mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Spinner: reduced mousewheel timer from 500ms to 400ms (thanks cloudream)
This commit is contained in:
parent
c73e5e5fdc
commit
11e3a32c5c
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user