mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
improved scripts compression
This commit is contained in:
parent
e1e2024ebe
commit
9c60d08955
3 changed files with 11 additions and 12 deletions
|
|
@ -1,10 +1,10 @@
|
|||
var CloudCommander, Util, DOM, CloudFunc;
|
||||
var CloudCommander, Util,
|
||||
DOM = {},
|
||||
CloudFunc;
|
||||
|
||||
(function(){
|
||||
(function(Util, DOM){
|
||||
"use strict";
|
||||
|
||||
DOM = {};
|
||||
|
||||
/* PRIVATE */
|
||||
|
||||
function getCurrentFileClass(){
|
||||
|
|
@ -1204,4 +1204,4 @@ var CloudCommander, Util, DOM, CloudFunc;
|
|||
DOM.addCloudStatus = function(pStatus){
|
||||
DOM.CloudStatus[DOM.CloudStatus.length] = pStatus;
|
||||
};
|
||||
})();
|
||||
})(Util, DOM);
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/* script, fixes ie */
|
||||
var Util, DOM, $;
|
||||
|
||||
(function(){
|
||||
(function(Util, DOM, $){
|
||||
"use strict";
|
||||
|
||||
/* setting head ie6 - ie8 */
|
||||
|
|
@ -218,4 +218,4 @@ var Util, DOM, $;
|
|||
}
|
||||
|
||||
|
||||
})();
|
||||
})(Util, DOM, $);
|
||||
|
|
@ -3,12 +3,11 @@
|
|||
* Module contain additional system functional
|
||||
*/
|
||||
var Util, exports;
|
||||
Util = exports || {};
|
||||
|
||||
(function(){
|
||||
(function(Util){
|
||||
"use strict";
|
||||
|
||||
Util = exports || {};
|
||||
|
||||
|
||||
var Scope = exports ? global : window;
|
||||
|
||||
/** setting function context
|
||||
|
|
@ -440,4 +439,4 @@ var Util, exports;
|
|||
return lRet;
|
||||
};
|
||||
|
||||
})();
|
||||
})(Util, exports);
|
||||
Loading…
Add table
Add a link
Reference in a new issue