Files
meanTorrent/modules/about/client/controllers/about.client.controller.js
2017-10-19 11:35:11 +08:00

21 lines
538 B
JavaScript

(function () {
'use strict';
angular
.module('about')
.controller('AboutController', AboutController);
AboutController.$inject = ['$scope', 'getStorageLangService', 'MeanTorrentConfig'];
function AboutController($scope, getStorageLangService, MeanTorrentConfig) {
var vm = this;
vm.lang = getStorageLangService.getLang();
vm.blackListConfig = MeanTorrentConfig.meanTorrentConfig.clientBlackList;
vm.announce = MeanTorrentConfig.meanTorrentConfig.announce;
vm.init = function () {
};
}
}());