mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
JSLint check
This commit is contained in:
parent
61300fe053
commit
ad3fd31b44
@ -95,7 +95,7 @@ $.widget("ui.progressbar", {
|
||||
|
||||
if (this.disabled) {
|
||||
return;
|
||||
};
|
||||
}
|
||||
|
||||
self.active = true;
|
||||
|
||||
|
@ -121,7 +121,7 @@ $.widget('ui.spinner', {
|
||||
self._propagate('change', e);
|
||||
})
|
||||
.bind('blur.spinner', function(e) {
|
||||
self._cleanUp()
|
||||
self._cleanUp();
|
||||
});
|
||||
|
||||
if ($.fn.mousewheel) {
|
||||
@ -274,7 +274,7 @@ $.extend($.ui.spinner, {
|
||||
s = s + ((s.toString().indexOf('.') == -1) ? '.' : '') + '0000000001';
|
||||
s = s.substr(0, s.indexOf('.')+1+dec);
|
||||
} else {
|
||||
var s = Math.round(s);
|
||||
s = Math.round(s);
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user