2015-04-22 15:19:08 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('copayApp.controllers').controller('preferencesLanguageController',
|
2015-04-22 18:41:30 -03:00
|
|
|
function($scope, $timeout, go) {
|
2015-04-22 15:19:08 -03:00
|
|
|
|
|
|
|
|
this.save = function(newLang) {
|
2015-04-22 18:41:30 -03:00
|
|
|
$scope.$emit('Local/DefaultLanguage', newLang);
|
2015-04-22 15:19:08 -03:00
|
|
|
$timeout(function() {
|
2015-04-22 18:41:30 -03:00
|
|
|
go.preferences();
|
2015-04-22 15:19:08 -03:00
|
|
|
}, 100);
|
|
|
|
|
};
|
|
|
|
|
});
|