summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrent Richardson <trentdrichardson@gmail.com>2013-06-14 07:44:19 -0400
committerTrent Richardson <trentdrichardson@gmail.com>2013-06-14 07:44:19 -0400
commit86d26915d1c7f4b3515c7b474c52d4ab0d3c8e53 (patch)
tree192eff28f946cb99af2dfe78a3c9e2a9f0e8f2fd
parent38b7fdd06bab544b08ddb9c966b4dc1c26a177f0 (diff)
downloadjQuery-Timepicker-Addon-86d26915d1c7f4b3515c7b474c52d4ab0d3c8e53.zip
jQuery-Timepicker-Addon-86d26915d1c7f4b3515c7b474c52d4ab0d3c8e53.tar.gz
jQuery-Timepicker-Addon-86d26915d1c7f4b3515c7b474c52d4ab0d3c8e53.tar.bz2
Fixes syntax error in last commit
-rw-r--r--jquery-ui-timepicker-addon.js2
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;
};