mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-28 01:00:59 +01:00
fix(admin): fixed variable issue of deny.client.view.html
This commit is contained in:
@@ -5,10 +5,11 @@
|
||||
.module('core')
|
||||
.controller('ErrorController', ErrorController);
|
||||
|
||||
ErrorController.$inject = ['$stateParams'];
|
||||
ErrorController.$inject = ['$stateParams', 'MeanTorrentConfig'];
|
||||
|
||||
function ErrorController($stateParams) {
|
||||
function ErrorController($stateParams, MeanTorrentConfig) {
|
||||
var vm = this;
|
||||
vm.supportConfig = MeanTorrentConfig.meanTorrentConfig.support;
|
||||
vm.errorMessage = null;
|
||||
vm.errorParams = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user