improved module cloudfunc

This commit is contained in:
coderaiser 2013-04-19 09:10:32 -04:00
parent 45609443f2
commit 848784e1ef
4 changed files with 8 additions and 6 deletions

View file

@ -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

View file

@ -51,6 +51,7 @@
- Переименована функция promptNewFolder -> promptNewDir.
- Добавлена функция getSelectedNames.
- Удален модуль Сache.
- Оптимизирован модуль CloudFunc.
2012.03.01, 0.1.9
===============

View file

@ -2,7 +2,7 @@
"api_url" : "/api/v1",
"appcache" : false,
"minification" : {
"js" : false,
"js" : true,
"css" : true,
"html" : true,
"img" : true

View file

@ -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);