From 23f193a6bcffd8cca8e782e74095a351cfac1f02 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 3 May 2021 12:29:44 +0200 Subject: [PATCH] Revert "UPS-3515: Critical bugfix - dependency issue breaks the whole application" This reverts commit 248ec4f0b01e8a738474327c020f661b157c2243. This was not the bug: The problem was that the build process took the source map file as the javascript file --- app/scripts/utilities/app.controller.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/scripts/utilities/app.controller.js b/app/scripts/utilities/app.controller.js index 7de41b8a..999ff6eb 100644 --- a/app/scripts/utilities/app.controller.js +++ b/app/scripts/utilities/app.controller.js @@ -12,10 +12,9 @@ angular .controller('AppController', appController); /* @ngInject */ -function appController($rootScope, $location, $state, appConfig, uitid, counterService, GoogleAnalyticsService) { +function appController($rootScope, $location, $state, appConfig, uitid, counterService, GoogleAnalyticsService, isJavaFXBrowser) { $rootScope.appBusy = true; var firstPage = true; - var isJavaFXBrowser = navigator.userAgent.indexOf('JavaFX') > -1; $rootScope.$on('$stateChangeStart', function () { $rootScope.appBusy = true;