We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38b7fdd commit 86d2691Copy full SHA for 86d2691
jquery-ui-timepicker-addon.js
@@ -2117,7 +2117,7 @@
2117
Date.prototype.microseconds = 0;
2118
Date.prototype.getMicroseconds = function(){ return this.microseconds; };
2119
Date.prototype.setMicroseconds = function(m){
2120
- this.setMilliseconds(this.getMilliseconds() + Math.floor(m/1000);
+ this.setMilliseconds(this.getMilliseconds() + Math.floor(m/1000));
2121
this.microseconds = m%1000;
2122
return this;
2123
};
0 commit comments