I added this code to get the editor to save when you press CTRL + s in Internet Explorer, Very Cool Editor I like it:
Added to "fck_1_ie.js" Function Doc_OnKeyDown:
case 83:
case 115:
if(e.ctrlKey){
oCommand=FCKCommands.GetCommand('Save');
oCommand.Execute();
return false;
}
break;
Added to "fck_1_ie.js" Function Doc_OnKeyDown:
case 83:
case 115:
if(e.ctrlKey){
oCommand=FCKCommands.GetCommand('Save');
oCommand.Execute();
return false;
}
break;