mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
fixed bug in conditions
This commit is contained in:
parent
faa3b3bc0e
commit
2b545346d9
1 changed files with 5 additions and 6 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue