From 837471c50a12ef73e2a90cada067fd9ae3f9bd84 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 7 Jan 2014 14:01:29 +0000 Subject: [PATCH] don't log mousewheel event, fixes #1993 --- static/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/utils.js b/static/js/utils.js index a49966c9..9373ecd5 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -1789,7 +1789,7 @@ pandora.logEvent = function(data, event, element) { var element = this, handlers = self.eventHandlers ? self.eventHandlers[event] : []; if (!Ox.contains([ - 'mousedown', 'mouserepeat', 'anyclick', 'singleclick', 'doubleclick', + 'mousedown', 'mouserepeat', 'anyclick', 'singleclick', 'doubleclick', 'mousewheel', 'dragstart', 'drag', 'dragenter', 'dragleave', 'dragpause', 'dragend', 'draganddropstart', 'draganddrop', 'draganddropenter', 'draganddropleave', 'draganddropend', 'playing', 'position', 'progress', 'request'