Spinner: reduced mousewheel timer from 500ms to 400ms (thanks cloudream)

This commit is contained in:
Ca-Phun Ung 2008-09-27 03:36:13 +00:00
parent c73e5e5fdc
commit 11e3a32c5c

View File

@ -270,7 +270,7 @@ $.widget('ui.spinner', {
window.clearTimeout(self.timeout);
self.timeout = 0;
}
self.timeout = window.setTimeout(function(){self._propagate('change', e)}, 500);
self.timeout = window.setTimeout(function(){self._propagate('change', e)}, 400);
e.preventDefault();
},
_getValue: function() {