unused code removed

This commit is contained in:
Gerard 2018-10-05 12:57:34 +02:00
parent 708ca020a2
commit 8edbc40da3
1 changed files with 2 additions and 5 deletions

View File

@ -2,12 +2,9 @@ import ngModule from '../module';
import './style.scss';
class Controller {
constructor($state, $scope, $http, $translate, vnApp) {
constructor($state, $scope) {
this.$state = $state;
this.$ = $scope;
this.$http = $http;
this.$translate = $translate;
this.vnApp = vnApp;
}
onSubmit() {
@ -19,7 +16,7 @@ class Controller {
}
}
Controller.$inject = ['$state', '$scope', '$http', '$translate', 'vnApp'];
Controller.$inject = ['$state', '$scope'];
ngModule.component('vnClaimDevelopment', {
template: require('./index.html'),