]> source.dussan.org Git - jquery-ui.git/commitdiff
Spinner: Remove debugging output that appends directly to the body from mousewheel... 165/head
authoradam j. sontag <ajpiano@ajpiano.com>
Mon, 21 Mar 2011 21:37:57 +0000 (17:37 -0400)
committeradam j. sontag <ajpiano@ajpiano.com>
Mon, 21 Mar 2011 21:37:57 +0000 (17:37 -0400)
ui/jquery.ui.spinner.js

index ae7583eec700ed851f338141635dba3c11e6bf84..4e6be49a5318283dbf9d4ce5cccf519c1e8b0cc8 100644 (file)
@@ -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() {