diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-03-22 08:55:00 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-03-22 08:55:00 -0400 |
commit | d4dadd14c293dfcbb4a7a214430ec511fea7a1da (patch) | |
tree | a32283c5182715d275522be3dcf6f2b0ad2c3d94 | |
parent | 02ba487db0493f08d7db8f059bc44ef7be0befcb (diff) | |
parent | 00547ec04621a08c1015f2a7ff6aeb43522a8744 (diff) | |
download | jquery-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.js | 1 |
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() { |