added @ngInject

This commit is contained in:
Patrick O'Carroll 2018-04-10 15:48:51 +02:00
parent c7cd754a94
commit 5f67d4268d

View File

@ -17,6 +17,7 @@ export class ValueSelectDropdownCtrl {
hide: any; hide: any;
onUpdated: any; onUpdated: any;
/** @ngInject */
constructor(private $q) {} constructor(private $q) {}
show() { show() {
@ -236,6 +237,7 @@ export class ValueSelectDropdownCtrl {
} }
} }
/** @ngInject */
export function valueSelectDropdown($compile, $window, $timeout, $rootScope) { export function valueSelectDropdown($compile, $window, $timeout, $rootScope) {
return { return {
scope: { variable: '=', onUpdated: '&' }, scope: { variable: '=', onUpdated: '&' },