Skip to content

Commit 86d2691

Browse files
Fixes syntax error in last commit
1 parent 38b7fdd commit 86d2691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery-ui-timepicker-addon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@
21172117
Date.prototype.microseconds = 0;
21182118
Date.prototype.getMicroseconds = function(){ return this.microseconds; };
21192119
Date.prototype.setMicroseconds = function(m){
2120-
this.setMilliseconds(this.getMilliseconds() + Math.floor(m/1000);
2120+
this.setMilliseconds(this.getMilliseconds() + Math.floor(m/1000));
21212121
this.microseconds = m%1000;
21222122
return this;
21232123
};

0 commit comments

Comments
 (0)