From 36299acbfbf1f4ccac427f48e7cc34c2be8a279f Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 23 Sep 2019 10:16:19 -0700 Subject: [PATCH] lint --- src/views/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); }); });