Skip to content

Commit a00b768

Browse files
committed
Recompiled source
1 parent 58409f0 commit a00b768

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

compiled/flipclock.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ var FlipClock;
203203
* Version
204204
*/
205205

206-
version: '0.7.2',
206+
version: '0.7.3',
207207

208208
/**
209209
* Sets the default options
@@ -1443,16 +1443,16 @@ var FlipClock;
14431443
date = this.getDateObject();
14441444
}
14451445

1446-
var obj = this.digitize([
1446+
var data = [
14471447
date.getHours(),
14481448
date.getMinutes()
1449-
]);
1449+
];
14501450

14511451
if(showSeconds === true) {
1452-
date.getSeconds();
1452+
data.push(date.getSeconds());
14531453
}
14541454

1455-
return obj;
1455+
return this.digitize(data);
14561456
},
14571457

14581458
/**

0 commit comments

Comments
 (0)