JSLint check

This commit is contained in:
Chi Cheng 2008-08-23 02:38:28 +00:00
parent 61300fe053
commit ad3fd31b44
2 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ $.widget("ui.progressbar", {
if (this.disabled) {
return;
};
}
self.active = true;

View File

@ -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;
}