mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-15 21:43:27 +08:00
#5295: Fixed clipboard operations in layout element property popups.
This commit is contained in:
parent
88679bd7ca
commit
d9208bcc14
@ -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
@ -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();
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user