@startlibs/form 1.0.0-alpha-10b → 1.0.0-alpha-10c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -5521,7 +5521,7 @@ var RichText = function RichText(_ref5) {
|
|
|
5521
5521
|
|
|
5522
5522
|
var keydownHandler = function keydownHandler(e) {
|
|
5523
5523
|
if (containerFocused.isOpen === 2) {
|
|
5524
|
-
if (e.key === "k" && e.ctrlKey) {
|
|
5524
|
+
if (e.key === "k" && e.ctrlKey || e.key === "k" && e.metaKey) {
|
|
5525
5525
|
e.preventDefault();
|
|
5526
5526
|
execCommand(null, 'link');
|
|
5527
5527
|
}
|