mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
chore(config, help) add " "
This commit is contained in:
parent
1881c46fa2
commit
4f8f122caa
2 changed files with 10 additions and 6 deletions
|
|
@ -12,7 +12,7 @@ var CloudCmd, Util, DOM;
|
|||
INPUT = 'INPUT',
|
||||
Config = this;
|
||||
|
||||
this.init = function(pCallBack){
|
||||
this.init = function(pCallBack){
|
||||
Util.loadOnLoad([
|
||||
Config.show,
|
||||
CloudCmd.View,
|
||||
|
|
@ -24,7 +24,7 @@ var CloudCmd, Util, DOM;
|
|||
delete Config.init;
|
||||
};
|
||||
|
||||
this.show = function(){
|
||||
this.show = function(){
|
||||
Images.showLoad({top:true});
|
||||
|
||||
DOM.ajax({
|
||||
|
|
@ -77,7 +77,9 @@ var CloudCmd, Util, DOM;
|
|||
});
|
||||
};
|
||||
|
||||
this.hide = CloudCmd.View.hide
|
||||
this.hide = function() {
|
||||
CloudCmd.View.hide();
|
||||
};
|
||||
|
||||
function listener(pEvent){
|
||||
var f10 = Key.F10,
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ var CloudCmd, Util, DOM;
|
|||
Images = DOM.Images,
|
||||
Help = this;
|
||||
|
||||
this.init = function(pCallBack){
|
||||
this.init = function(pCallBack){
|
||||
Util.loadOnLoad([
|
||||
Help.show,
|
||||
CloudCmd.View,
|
||||
|
|
@ -63,9 +63,11 @@ var CloudCmd, Util, DOM;
|
|||
};
|
||||
|
||||
|
||||
this.hide = CloudCmd.View.hide;
|
||||
this.hide = function() {
|
||||
CloudCmd.View.hide();
|
||||
};
|
||||
|
||||
function listener(pEvent){
|
||||
function listener(pEvent) {
|
||||
var lF1 = Key.F1,
|
||||
lIsBind = Key.isBind(),
|
||||
lKey = pEvent.keyCode;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue