mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-23 07:42:23 +01:00
21 lines
538 B
JavaScript
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 () {
|
|
|
|
};
|
|
}
|
|
}());
|