mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 19:32:19 +01:00
19 lines
382 B
JavaScript
19 lines
382 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('rules')
|
|
.controller('RulesController', RulesController);
|
|
|
|
RulesController.$inject = ['$scope', '$translate', 'getStorageLangService'];
|
|
|
|
function RulesController($scope, $translate, getStorageLangService) {
|
|
var vm = this;
|
|
vm.lang = getStorageLangService.getLang();
|
|
|
|
vm.init = function () {
|
|
|
|
};
|
|
}
|
|
}());
|