Skip to content

Commit

Permalink
UPS-3515: Critical bugfix - dependency issue breaks the whole applica…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
hirviid committed May 3, 2021
1 parent e183eeb commit 248ec4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/scripts/utilities/app.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ angular
.controller('AppController', appController);

/* @ngInject */
function appController($rootScope, $location, $state, appConfig, uitid, counterService, GoogleAnalyticsService, isJavaFXBrowser) {
function appController($rootScope, $location, $state, appConfig, uitid, counterService, GoogleAnalyticsService) {
$rootScope.appBusy = true;
var firstPage = true;
var isJavaFXBrowser = navigator.userAgent.indexOf('JavaFX') > -1;

$rootScope.$on('$stateChangeStart', function () {
$rootScope.appBusy = true;
Expand Down

0 comments on commit 248ec4f

Please sign in to comment.