Fix mousewheel can not have a preventDefault
Chrome complains about it: "Unable to preventDefault inside passive event listener due to target being treated as passive." Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
parent
68c1d7cab8
commit
2839b306d5
@ -238,7 +238,6 @@ AJAX.registerOnload('table/gis_visualization.js', function () {
|
||||
});
|
||||
|
||||
$(document).on('mousewheel', '#placeholder', function (event, delta) {
|
||||
event.preventDefault();
|
||||
var relCoords = getRelativeCoords(event);
|
||||
if (delta > 0) {
|
||||
// zoom in
|
||||
|
||||
Loading…
Reference in New Issue
Block a user