minor changes

This commit is contained in:
coderaiser 2012-07-30 10:47:05 -04:00
parent 1038e1a028
commit e65ec7fb9f

View file

@ -65,6 +65,7 @@ CloudCommander.Editor.CodeMirror = {
/* removing keyBinding if set */
CloudCommander.keyBinded = false;
var lParent = this;
var initCodeMirror_f = function(pValue){
CodeMirror(lCloudEditor,{
mode : 'xml',
@ -76,7 +77,7 @@ CloudCommander.Editor.CodeMirror = {
autofocus : true,
extraKeys: {
//Сохранение
"Esc": this.hide(this)
"Esc": lParent.hide(this)
}
});
};