diff --git a/src/views/app.js b/src/views/app.js index aef63b47c..f4d749ada 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -750,7 +750,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location' $location.path('/apps'); }); } - } + }; $scope.repair = { busy: false, @@ -827,7 +827,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location' $('#repairModal').modal('hide'); }); } - } + }; $scope.postInstallConfirm = { message: '', @@ -974,7 +974,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location' // setup all the dialog focus handling ['appUninstallModal', 'appUpdateModal', 'appRestoreModal'].forEach(function (id) { $('#' + id).on('shown.bs.modal', function () { - $(this).find("[autofocus]:first").focus(); + $(this).find('[autofocus]:first').focus(); }); });