Fix preview modal not stopping keydown propagation in drive

pull/1/head
yflory 5 years ago
parent 572db00987
commit b4c61ee753

@ -338,6 +338,9 @@ define([
$left.click(previous);
$right.click(next);
$modal.on('keydown', function (e) {
e.stopPropagation();
});
$modal.on('keyup', function (e) {
//if (!Slide.shown) { return; }
e.stopPropagation();

Loading…
Cancel
Save