Commit ade9f7fb authored by Maxim Kadushkin's avatar Maxim Kadushkin

[SSE embed] fix bug 33443

parent c0c388f8
......@@ -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');
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment