[SSE embed] fix bug 33443

This commit is contained in:
Maxim Kadushkin 2016-11-22 15:27:23 +03:00
parent c0c388f81a
commit ade9f7fb96

View file

@ -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'); Common.Analytics.trackEvent('Load', 'Complete');
} }