mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(dom) retExec(pCallBack) -> pCallBack
This commit is contained in:
parent
21571e61bd
commit
68db000f43
1 changed files with 3 additions and 3 deletions
|
|
@ -954,8 +954,8 @@ var CloudCmd, Util, DOM, CloudFunc;
|
|||
pParams = {};
|
||||
/* загружаем jquery: */
|
||||
Loader.jsload('//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js',{
|
||||
onload : Util.retExec(pParams.onload),
|
||||
onerror : Util.retExec(pParams.onerror)
|
||||
onload : pParams.onload,
|
||||
onerror : pParams.onerror
|
||||
});
|
||||
};
|
||||
|
||||
|
|
@ -1012,7 +1012,7 @@ var CloudCmd, Util, DOM, CloudFunc;
|
|||
* @param pCallBack
|
||||
*/
|
||||
this.socketLoad = function(pCallBack){
|
||||
Loader.jsload('/lib/client/socket.js', Util.retExec(pCallBack) );
|
||||
Loader.jsload('/lib/client/socket.js', pCallBack);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue