CURLOPT_FOLLOWLOCATION curl workaround (for safe_mode/open_basedir) (#138)

This commit is contained in:
RainLoop Team 2014-04-27 03:12:09 +04:00
parent 0fcd7cf122
commit 5fff5afd16
8 changed files with 186 additions and 273 deletions

View file

@ -263,6 +263,8 @@ AbstractApp.prototype.pub = function (sName, aArgs)
AbstractApp.prototype.bootstart = function ()
{
var self = this;
Utils.initOnStartOrLangChange(function () {
Utils.initNotificationLanguage();
}, null);
@ -276,9 +278,11 @@ AbstractApp.prototype.bootstart = function ()
'maxWidth': 767,
'onEnter': function() {
$html.addClass('ssm-state-mobile');
self.pub('ssm.mobile-enter');
},
'onLeave': function() {
$html.removeClass('ssm-state-mobile');
self.pub('ssm.mobile-leave');
}
});