From 949f7587dc5fbb8975883728872fb6d981ade33f Mon Sep 17 00:00:00 2001 From: Michael Teeuw Date: Sun, 15 Jan 2017 19:38:46 +0100 Subject: [PATCH] Solve issue: #611 --- modules/default/clock/clock.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js index c84c133e..e0a4326d 100644 --- a/modules/default/clock/clock.js +++ b/modules/default/clock/clock.js @@ -134,6 +134,10 @@ Module.register("clock",{ if (this.config.analogFace != "" && this.config.analogFace != "simple" && this.config.analogFace != "none") { clockCircle.style.background = "url("+ this.data.path + "faces/" + this.config.analogFace + ".svg)"; clockCircle.style.backgroundSize = "100%"; + + // The following line solves issue: https://github.com/MichMich/MagicMirror/issues/611 + clockCircle.style.border = "1px solid black"; + } else if (this.config.analogFace != "none") { clockCircle.style.border = "2px solid white"; }