removed unused code from item niche

This commit is contained in:
Carlos Jimenez 2018-02-26 17:32:23 +01:00
parent c0106b11d2
commit 456e63700f
1 changed files with 2 additions and 3 deletions

View File

@ -1,11 +1,10 @@
import ngModule from '../module';
export default class Controller {
constructor($state, $scope, $http, $q, $translate, vnApp) {
constructor($state, $scope, $http, $translate, vnApp) {
this.$state = $state;
this.$scope = $scope;
this.$http = $http;
this.$q = $q;
this.$translate = $translate;
this.vnApp = vnApp;
@ -138,7 +137,7 @@ export default class Controller {
}
}
Controller.$inject = ['$state', '$scope', '$http', '$q', '$translate', 'vnApp'];
Controller.$inject = ['$state', '$scope', '$http', '$translate', 'vnApp'];
ngModule.component('vnItemNiche', {
template: require('./item-niche.html'),