mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 06:08:33 +08:00
[SSE embed] fix bug 33443
This commit is contained in:
@ -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');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user