Code refactoring

This commit is contained in:
RainLoop Team 2014-08-26 19:24:47 +04:00
parent 4a95dd6195
commit 36329110e5
81 changed files with 3474 additions and 2124 deletions

10
vendors/rl/rl.js vendored
View file

@ -1,5 +1,5 @@
/*! RainLoop Index Helper v1.1 (c) 2013 RainLoop Team; Licensed under MIT */
(function (window, JSON) {
/*! RainLoop Index Helper v1.2 (c) 2013 RainLoop Team; Licensed under MIT */
(function (window, document, JSON) {
/**
* @constructor
@ -85,8 +85,8 @@
};
window['__runBoot'] = function (bWithError) {
if (window.__RLBOOT && !bWithError) {
window.__RLBOOT(function (bV) {
if (window.__APP_BOOT && !bWithError) {
window.__APP_BOOT(function (bV) {
if (!bV) {
__showError();
}
@ -96,4 +96,4 @@
}
};
}(window, window.JSON));
}(window, window.document, window.JSON));