mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-08 15:37:11 +01:00
20 lines
443 B
JavaScript
20 lines
443 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('about')
|
|
.controller('AboutController', AboutController);
|
|
|
|
AboutController.$inject = ['$scope', 'MeanTorrentConfig'];
|
|
|
|
function AboutController($scope, MeanTorrentConfig) {
|
|
var vm = this;
|
|
vm.blackListConfig = MeanTorrentConfig.meanTorrentConfig.clientBlackList;
|
|
vm.announce = MeanTorrentConfig.meanTorrentConfig.announce;
|
|
|
|
vm.init = function () {
|
|
|
|
};
|
|
}
|
|
}());
|