rosa-abf/rosa-build

View on GitHub
app/assets/javascripts/angularjs/controllers/rosa_abf_controller.js

Summary

Maintainability
A
0 mins
Test Coverage
RosaABF.controller('RosaABFController', ['$scope', 'LocalesHelper', 'SoundNotificationsHelper',
function($scope, LocalesHelper, SoundNotificationsHelper) {
$scope.init = function(locale, sound_notifications) {
LocalesHelper.setLocale(locale);
moment.locale(locale);
SoundNotificationsHelper.enabled(sound_notifications);
}
}]);