aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-03-22 08:55:00 -0400
committerScott González <scott.gonzalez@gmail.com>2011-03-22 08:55:00 -0400
commitd4dadd14c293dfcbb4a7a214430ec511fea7a1da (patch)
treea32283c5182715d275522be3dcf6f2b0ad2c3d94
parent02ba487db0493f08d7db8f059bc44ef7be0befcb (diff)
parent00547ec04621a08c1015f2a7ff6aeb43522a8744 (diff)
downloadjquery-ui-d4dadd14c293dfcbb4a7a214430ec511fea7a1da.tar.gz
jquery-ui-d4dadd14c293dfcbb4a7a214430ec511fea7a1da.zip
Merge branch 'remove-spinner-output' of https://github.com/ajpiano/jquery-ui
-rw-r--r--ui/jquery.ui.spinner.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/jquery.ui.spinner.js b/ui/jquery.ui.spinner.js
index 75481f546..b8cca7dcd 100644
--- a/ui/jquery.ui.spinner.js
+++ b/ui/jquery.ui.spinner.js
@@ -188,7 +188,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() {