prod injection fix

This commit is contained in:
Bálint Szekeres
2019-07-07 20:20:43 +02:00
parent 5e46d78898
commit e70ac6a510
2 changed files with 13 additions and 4 deletions

View File

@@ -5,10 +5,19 @@
angular
.module('NginxConfigIoApp', ['ngclipboard', '720kb.tooltips'])
.config(appConfig)
.config(tooltipsConfig)
.config([
'$locationProvider',
appConfig,
])
.config([
'tooltipsConfProvider',
tooltipsConfig,
])
.directive('ngIncludeTabs', ngIncludeTabs)
.controller('NginxConfigIoController', NginxConfigIoController);
.controller('NginxConfigIoController', [
'$scope', '$window', '$location', '$timeout',
NginxConfigIoController,
]);