[SSE embed] fix bug 33443
This commit is contained in:
parent
c0c388f81a
commit
ade9f7fb96
|
@ -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');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue