$(window).on('keydown', function (e) {
+ if (this.linkeditor.utils.isfocusOnFormItem()) {
+ return true;
+ }
if (e.keyCode == 16) {
$("#linkeditor-main").addClass('selection');
+
} else if (e.keyCode == 32) {
if (!$this.mobileFirst) {
$("#linkeditor-main").addClass('grab');
}
} else if (e.keyCode == 18) {
$("#linkeditor-main").addClass('duplicate');
- return false;
+
}
$this.rulers.moveRuler();
+ return false;
});
- // Disable scroll by spacebar
$(window).on('keyup', function (e) {
+ if (this.linkeditor.utils.isfocusOnFormItem()) {
+ return true;
+ }
if (e.keyCode == 16) {
$("#linkeditor-main").removeClass('selection');
} else if (e.keyCode == 32) {
$this.zoom.resetZoomDrag();
} else if (e.keyCode == 18) {
$("#linkeditor-main").removeClass('duplicate');
- return false;
+
}
$this.rulers.moveRuler();
+ return false;
});
$(document).on('mousedown', "#linkeditor-editor", function (e) {