Skip to content

Commit

Permalink
Merge branch 'remove-spinner-output' of https://github.com/ajpiano/jq…
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgonzalez committed Mar 22, 2011
2 parents 02ba487 + 00547ec commit d4dadd1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ui/jquery.ui.spinner.js
Expand Up @@ -188,7 +188,6 @@ $.widget('ui.spinner', {
if (!self.spinning && !self._start(event)) { if (!self.spinning && !self._start(event)) {
return false; return false;
} }
$("<div>").text("delta: " + delta).appendTo(document.body)
self._spin((delta > 0 ? 1 : -1) * self.options.step, event); self._spin((delta > 0 ? 1 : -1) * self.options.step, event);
clearTimeout(self.timeout); clearTimeout(self.timeout);
self.timeout = setTimeout(function() { self.timeout = setTimeout(function() {
Expand Down

0 comments on commit d4dadd1

Please sign in to comment.