#5295: Fixed clipboard operations in layout element property popups.

This commit is contained in:
Daniel Stolt 2015-06-09 02:08:58 +03:00
parent 88679bd7ca
commit d9208bcc14
3 changed files with 9 additions and 1 deletions

View File

@ -785,6 +785,10 @@ angular
popup.hide();
e.stopPropagation();
});
popup.on("cut copy paste", function (e) {
// Allow clipboard operations in popup without invoking clipboard event handlers on parent element.
e.stopPropagation();
});
}
};
}

File diff suppressed because one or more lines are too long

View File

@ -30,6 +30,10 @@
popup.hide();
e.stopPropagation();
});
popup.on("cut copy paste", function (e) {
// Allow clipboard operations in popup without invoking clipboard event handlers on parent element.
e.stopPropagation();
});
}
};
}