fixed bug in conditions

This commit is contained in:
coderaiser 2012-07-17 13:30:07 -04:00
parent faa3b3bc0e
commit 2b545346d9

View file

@ -72,11 +72,10 @@ CloudCommander.Editor.CloudMirror = {
var lCloudEditor = this.getById('CloudEditor');
lLeft &&
lLeft.className = 'panel hidden';
(lLeft.className = 'panel hidden');
lCloudEditor &&
lCloudEditor
.className = '';
(lCloudEditor.className = '');
}),
@ -89,12 +88,12 @@ CloudCommander.Editor.CloudMirror = {
var lCloudEditor = this.getById('CloudEditor');
lCloudEditor &&
lCloudEditor.className = 'hidden';
(lCloudEditor.className = 'hidden');
lLeft &&
lLeft.className = 'panel';
(lLeft.className = 'panel');
}),
getById: function(pId){return document.getElementById(pId)}
getById: function(pId){return document.getElementById(pId);}
};
CloudCommander.Editor.Keys = (function(){
"use strict";