rosa-build/app/assets/javascripts/angularjs/controllers/rosa_abf_controller.js

8 lines
317 B
JavaScript

RosaABF.controller('RosaABFController', ['$scope', 'LocalesHelper', 'SoundNotificationsHelper', function($scope, LocalesHelper, SoundNotificationsHelper) {
$scope.init = function(locale, sound_notifications) {
LocalesHelper.setLocale(locale);
SoundNotificationsHelper.enabled(sound_notifications);
}
}]);