diff --git a/src/js/client.js b/src/js/client.js index 950d5dc9a..c8be1c756 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -58,7 +58,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N return function (data, status) { client.offline = false; return callback(null, data, status); - } + }; } // XHR wrapper to set the auth header diff --git a/src/js/main.js b/src/js/main.js index 9c94a6360..82cf30028 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -170,7 +170,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route', // setup all the dialog focus handling ['updateModal'].forEach(function (id) { $('#' + id).on('shown.bs.modal', function () { - $(this).find("[autofocus]:first").focus(); + $(this).find('[autofocus]:first').focus(); }); }); }]); diff --git a/src/views/appstore.js b/src/views/appstore.js index d7d551e89..a0e1e0305 100644 --- a/src/views/appstore.js +++ b/src/views/appstore.js @@ -499,7 +499,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca // setup all the dialog focus handling ['appInstallModal'].forEach(function (id) { $('#' + id).on('shown.bs.modal', function () { - $(this).find("[autofocus]:first").focus(); + $(this).find('[autofocus]:first').focus(); }); });