diff options
Diffstat (limited to 'demos/functional/js')
-rw-r--r-- | demos/functional/js/behaviour.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/functional/js/behaviour.js b/demos/functional/js/behaviour.js index 2ac0305f7..35ea2b060 100644 --- a/demos/functional/js/behaviour.js +++ b/demos/functional/js/behaviour.js @@ -73,7 +73,7 @@ $(document).ready(function() { this.rotate(); this.rotate("right"); - this.element.parent().bind("mousewheel", function(e,delta) { + this.element.parent().bind("mousewheel", function(event ,delta) { if(self.autoRotator) window.clearInterval(self.autoRotator); self.rotate(delta < 0 ? "right" : "left"); return false; |