Wallet/src/js/controllers/preferencesLanguage.js
Gustavo Maximiliano Cortez 140440b224 Fix translate option
2015-04-22 18:41:30 -03:00

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);
};
});