tweak clock tenths of seconds threshold

This commit is contained in:
Thibault Duplessis 2013-10-07 00:51:08 +02:00
parent 62c4184946
commit 1c1c3f9399

View file

@ -1625,7 +1625,7 @@ var storage = {
_formatDate: function(date) {
minutes = this._prefixInteger(date.getUTCMinutes(), 2);
seconds = this._prefixInteger(date.getSeconds(), 2);
if (this.options.time < 5 * 1000) {
if (this.options.time < 10 * 1000) {
tenths = Math.floor(date.getMilliseconds() / 100);
return minutes + ':' + seconds + ':' + tenths;
} else {