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:
julmis
2005-07-13 20:52:12 +00:00
parent f8a6a83698
commit f7a669d89c
+1 -1
View File
@@ -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;