Disable previous pull-request (after testing)

This commit is contained in:
RainLoop Team 2014-09-19 15:32:25 +04:00
parent 48dc9859c2
commit dfb3a07536
4 changed files with 16 additions and 4 deletions

View file

@ -1900,7 +1900,6 @@
}
};
/**
* @param {string} sLanguage
* @param {Function=} fDone
@ -1922,6 +1921,19 @@
.always(fAllways || Utils.emptyFunction)
;
};
/**
* @param {Object} oParams
*/
Utils.setHeadViewport = function (oParams)
{
var aContent = [];
_.each(oParams, function (sKey, sValue) {
aContent.push('' + sKey + '=' + sValue);
});
$('#rl-head-viewport').attr('content', aContent.join(', '));
};
module.exports = Utils;