mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Spinner: Remove debugging output that appends directly to the body from mousewheel handling.
This commit is contained in:
parent
a6fbb47e6a
commit
00547ec046
1
ui/jquery.ui.spinner.js
vendored
1
ui/jquery.ui.spinner.js
vendored
@ -187,7 +187,6 @@ $.widget('ui.spinner', {
|
||||
if (!self.spinning && !self._start(event)) {
|
||||
return false;
|
||||
}
|
||||
$("<div>").text("delta: " + delta).appendTo(document.body)
|
||||
self._spin((delta > 0 ? 1 : -1) * self.options.step, event);
|
||||
clearTimeout(self.timeout);
|
||||
self.timeout = setTimeout(function() {
|
||||
|
Loading…
Reference in New Issue
Block a user