lint: quotes

This commit is contained in:
Girish Ramakrishnan
2019-05-05 09:05:06 -07:00
parent 1fbbeba5bc
commit 9c3cae5eca
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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();
});
});
}]);