diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2013-06-14 07:44:19 -0400 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2013-06-14 07:44:19 -0400 |
commit | 86d26915d1c7f4b3515c7b474c52d4ab0d3c8e53 (patch) | |
tree | 192eff28f946cb99af2dfe78a3c9e2a9f0e8f2fd | |
parent | 38b7fdd06bab544b08ddb9c966b4dc1c26a177f0 (diff) | |
download | jQuery-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.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; }; |