Ensure all views using client.js have required dependencies

This commit is contained in:
Johannes Zellner
2020-11-08 10:48:30 +01:00
parent f0a5796f2e
commit f8229ba53b
10 changed files with 40 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
/* global $ */
// create main application module
var app = angular.module('Application', ['angular-md5', 'ui-notification', 'ui.bootstrap']);
var app = angular.module('Application', ['pascalprecht.translate', 'ngCookies', 'angular-md5', 'ui-notification', 'ui.bootstrap']);
app.controller('SetupController', ['$scope', 'Client', function ($scope, Client) {
// Stupid angular location provider either wants html5 location mode or not, do the query parsing on my own