mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
improved module cloudfunc
This commit is contained in:
parent
05d217e15b
commit
b85b2a86bf
4 changed files with 8 additions and 6 deletions
|
|
@ -81,6 +81,8 @@ is pressed and current file is directory.
|
|||
|
||||
* Updated jquery to v2.0.0.
|
||||
|
||||
* Improved CloudFunc module.
|
||||
|
||||
|
||||
2012.03.01, Version 0.1.9
|
||||
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@
|
|||
- Переименована функция promptNewFolder -> promptNewDir.
|
||||
- Добавлена функция getSelectedNames.
|
||||
- Удален модуль Сache.
|
||||
- Оптимизирован модуль CloudFunc.
|
||||
|
||||
2012.03.01, 0.1.9
|
||||
===============
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"api_url" : "/api/v1",
|
||||
"appcache" : false,
|
||||
"minification" : {
|
||||
"js" : false,
|
||||
"js" : true,
|
||||
"css" : true,
|
||||
"html" : true,
|
||||
"img" : true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
var CloudFunc, exports, Util;
|
||||
var Util, exports, CloudFunc = {};
|
||||
|
||||
(function(){
|
||||
(function(Util, CloudFunc, exports){
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
|
|
@ -21,8 +21,7 @@ var CloudFunc, exports, Util;
|
|||
Util = global.cloudcmd.main.util;
|
||||
CloudFunc = exports;
|
||||
}
|
||||
else
|
||||
CloudFunc = {};
|
||||
|
||||
|
||||
/* Путь с которым мы сейчас работаем */
|
||||
CloudFunc.Path = '';
|
||||
|
|
@ -365,4 +364,4 @@ var CloudFunc, exports, Util;
|
|||
|
||||
return lFileTable;
|
||||
};
|
||||
})();
|
||||
})(Util, CloudFunc, exports);
|
||||
Loading…
Add table
Add a link
Reference in a new issue