Palestine
|
Edited by khalid at 2013-8-28 07:55
vot 2013-8-22 19:28
Get the editor.js from Uygur forum and compare it with our file!
Fixed
the problem form this code in editor.j file- if(ctlent_enable[13] && event.keyCode == 13 && wysiwyg && $(editorid + '_insertorderedlist').className != 'hover' && $(editorid + '_insertunorderedlist').className != 'hover') {
- if(!BROWSER.opera) {
- insertText('
- *', 5, 0);
- } else {
- insertText('
- ', 5, 0);
- }
- keyBackspace();
- doane(event);
- }
- if(ctlent_enable[9] && event.keyCode == 9) {
Copy the Code replace with
x3 editor code- if(ctlent_enable[9] && event.keyCode == 9) {
- if(!wysiwyg) {
- insertText('\t', 1, 0);
- }
Copy the Code it's work good
|
Rate
-
View Rating Log
|