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

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();
});
});
}]);