Skip to content

Commit 26ffd1b

Browse files
committed
- (Bug Fix) Removed the way lists were instantiated. The minimumDigits property was removed, as it's not necessary
1 parent b132722 commit 26ffd1b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/flipclock/js/faces/counter.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@
7272

7373
if(time.length > children.length) {
7474
$.each(time, function(i, digit) {
75-
var list = t.createList(digit, {
76-
minimumDigits: t.minimumDigits
77-
});
75+
var list = t.createList(digit);
7876

7977
list.select(digit);
8078
});

0 commit comments

Comments
 (0)