add call back to set Ux Language

This commit is contained in:
Gabriel Bazán 2016-01-20 17:21:26 -03:00
parent 6be5209fcf
commit 82c9e3b731
1 changed files with 4 additions and 3 deletions

View File

@ -1074,11 +1074,12 @@ angular.module('copayApp.controllers').controller('indexController', function($r
}); });
}; };
self.setUxLanguage = function() { self.setUxLanguage = function(cb) {
uxLanguage.update(function(lang) { uxLanguage.update(function(lang) {
var userLang = lang; var userLang = lang;
self.defaultLanguageIsoCode = userLang; self.defaultLanguageIsoCode = userLang;
self.defaultLanguageName = uxLanguage.getName(userLang); self.defaultLanguageName = uxLanguage.getName(userLang);
if (cb) return cb();
}); });
}; };
@ -1433,7 +1434,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.noFocusedWallet = true; self.noFocusedWallet = true;
self.isComplete = null; self.isComplete = null;
self.walletName = null; self.walletName = null;
self.setUxLanguage(function() {}); self.setUxLanguage();
profileService.isDisclaimerAccepted(function(v) { profileService.isDisclaimerAccepted(function(v) {
if (v) { if (v) {
go.path('import'); go.path('import');
@ -1443,7 +1444,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
}); });
$rootScope.$on('Local/NewFocusedWallet', function() { $rootScope.$on('Local/NewFocusedWallet', function() {
self.setUxLanguage(function() {}); self.setUxLanguage();
self.setFocusedWallet(); self.setFocusedWallet();
self.debounceUpdateHistory(); self.debounceUpdateHistory();
self.isDisclaimerAccepted(); self.isDisclaimerAccepted();