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 58409f0 commit a00b768Copy full SHA for a00b768
compiled/flipclock.js
@@ -203,7 +203,7 @@ var FlipClock;
203
* Version
204
*/
205
206
- version: '0.7.2',
+ version: '0.7.3',
207
208
/**
209
* Sets the default options
@@ -1443,16 +1443,16 @@ var FlipClock;
1443
date = this.getDateObject();
1444
}
1445
1446
- var obj = this.digitize([
+ var data = [
1447
date.getHours(),
1448
date.getMinutes()
1449
- ]);
+ ];
1450
1451
if(showSeconds === true) {
1452
- date.getSeconds();
+ data.push(date.getSeconds());
1453
1454
1455
- return obj;
+ return this.digitize(data);
1456
},
1457
1458
0 commit comments