From 00547ec04621a08c1015f2a7ff6aeb43522a8744 Mon Sep 17 00:00:00 2001 From: "adam j. sontag" Date: Mon, 21 Mar 2011 17:37:57 -0400 Subject: [PATCH] Spinner: Remove debugging output that appends directly to the body from mousewheel handling. --- ui/jquery.ui.spinner.js | 1 - 1 file changed, 1 deletion(-) 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; } - $("
").text("delta: " + delta).appendTo(document.body) self._spin((delta > 0 ? 1 : -1) * self.options.step, event); clearTimeout(self.timeout); self.timeout = setTimeout(function() { -- 2.39.5