diff options
-rw-r--r-- | jquery-ui-timepicker-addon.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js index dce5265..e02e8ca 100644 --- a/jquery-ui-timepicker-addon.js +++ b/jquery-ui-timepicker-addon.js @@ -2117,7 +2117,7 @@ Date.prototype.microseconds = 0; Date.prototype.getMicroseconds = function(){ return this.microseconds; }; Date.prototype.setMicroseconds = function(m){ - this.setMilliseconds(this.getMilliseconds() + Math.floor(m/1000); + this.setMilliseconds(this.getMilliseconds() + Math.floor(m/1000)); this.microseconds = m%1000; return this; }; |