Fix preview modal not stopping keydown propagation in drive
This commit is contained in:
parent
572db00987
commit
b4c61ee753
@ -338,6 +338,9 @@ define([
|
|||||||
$left.click(previous);
|
$left.click(previous);
|
||||||
$right.click(next);
|
$right.click(next);
|
||||||
|
|
||||||
|
$modal.on('keydown', function (e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
$modal.on('keyup', function (e) {
|
$modal.on('keyup', function (e) {
|
||||||
//if (!Slide.shown) { return; }
|
//if (!Slide.shown) { return; }
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user