Bug #18757 ยป rtehtmlarea_bugfix_8348.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (working copy) | ||
---|---|---|
HTMLArea._stopEvent(ev);
|
||
return false;
|
||
}
|
||
if (!editor.config.hotKeyList[key]) return false;
|
||
if (!editor.config.hotKeyList[key]) return true;
|
||
var cmd = editor.config.hotKeyList[key].cmd;
|
||
if (!cmd) return false;
|
||
if (!cmd) return true;
|
||
switch (cmd) {
|
||
case "SelectAll":
|
||
case "Undo" :
|