We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34248c0 commit 88d73b2Copy full SHA for 88d73b2
src/flipclock/js/faces/twelvehourclock.js
@@ -32,7 +32,7 @@
32
build: function() {
33
var t = this;
34
35
- var time = this.factory.time.getTime();
+ var time = this.factory.time.getTime(false, this.showSeconds);
36
37
this.base(time);
38
this.meridiumText = this.getMeridium();
@@ -43,7 +43,7 @@
43
'</li>',
44
'</ul>'
45
].join(''));
46
-
+
47
this.meridium.insertAfter(this.lists[this.lists.length-1].$el);
48
},
49
@@ -56,7 +56,7 @@
56
57
this.meridium.find('a').html(this.meridiumText);
58
}
59
- this.base(this.factory.time.getTime(), doNotAddPlayClass);
+ this.base(this.factory.time.getTime(false, this.showSeconds), doNotAddPlayClass);
60
61
62
/**
0 commit comments