diff options
author | adam j. sontag <ajpiano@ajpiano.com> | 2011-03-21 17:37:57 -0400 |
---|---|---|
committer | adam j. sontag <ajpiano@ajpiano.com> | 2011-03-21 17:37:57 -0400 |
commit | 00547ec04621a08c1015f2a7ff6aeb43522a8744 (patch) | |
tree | 866606ad9f3e90fb112f8b9376bfdf23c9c69b45 /ui | |
parent | a6fbb47e6a0814c7c5c9c007b3d3a568364801cf (diff) | |
download | jquery-ui-00547ec04621a08c1015f2a7ff6aeb43522a8744.tar.gz jquery-ui-00547ec04621a08c1015f2a7ff6aeb43522a8744.zip |
Spinner: Remove debugging output that appends directly to the body from mousewheel handling.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.spinner.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/jquery.ui.spinner.js b/ui/jquery.ui.spinner.js index ae7583eec..4e6be49a5 100644 --- a/ui/jquery.ui.spinner.js +++ b/ui/jquery.ui.spinner.js @@ -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() { |