12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('preferencesLanguageController',
|
|
function($scope, $timeout, go) {
|
|
|
|
this.save = function(newLang) {
|
|
$scope.$emit('Local/DefaultLanguage', newLang);
|
|
$timeout(function() {
|
|
go.preferences();
|
|
}, 100);
|
|
};
|
|
});
|