Force locale in ajax data.

This commit is contained in:
opi 2014-03-03 23:04:09 +01:00
parent 4524237d37
commit f7078f9a7d

View file

@ -83,6 +83,10 @@ app = Sammy('#main', function (sam) {
c = this; c = this;
method = typeof method !== 'undefined' ? method : 'GET'; method = typeof method !== 'undefined' ? method : 'GET';
data = typeof data !== 'undefined' ? data : {}; data = typeof data !== 'undefined' ? data : {};
if (window.navigator && window.navigator.language && (typeof data.locale === 'undefined')) {
data.locale = window.navigator.language;
}
var args = data; var args = data;
auth = "Basic "+ btoa(store.get('user') +':'+ atob(store.get('password'))); auth = "Basic "+ btoa(store.get('user') +':'+ atob(store.get('password')));
if (uri == '/postinstall') { if (uri == '/postinstall') {