Do not intercept ctrl + v in gecko and let browser's own editor to handle it.
It's a bubblegum fix but partly takes care of pasting problem in Mozilla/Firefox
This commit is contained in:
@@ -1955,7 +1955,7 @@ HTMLArea.prototype._editorEvent = function(ev) {
|
||||
case 'j': cmd = "justifyfull"; break;
|
||||
case 'z': cmd = "undo"; break;
|
||||
case 'y': cmd = "redo"; break;
|
||||
case 'v': cmd = "paste"; break;
|
||||
case 'v': if (! HTMLArea.is_gecko ) { cmd = "paste"; } break;
|
||||
|
||||
case '0': cmd = "killword"; break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user