diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index a34863d9c..4da663271 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -280,6 +280,13 @@ var ApplicationController = new(function(){ } }); + $(document).on('mousewheel', function (e) { + if ((e.ctrlKey || e.metaKey) && !e.altKey) { + e.preventDefault(); + e.stopPropagation(); + } + }); + Common.Analytics.trackEvent('Load', 'Complete'); }