fix typo, fix codestyle

This commit is contained in:
Miha Mencin 2020-01-16 14:50:31 +01:00
parent 29458375ab
commit 6460d6e879

View file

@ -375,9 +375,9 @@ var RepositoryDatatable = (function(global) {
}
function disableCheckboxToggleOnCheckboxPreview(){
$(".checklist-dropdown").click(function(e) {
$('.checklist-dropdown').click(function(e) {
e.stopPropagation();
$(e.currentTarget).find("ul").toggle()
$(e.currentTarget).find('ul').toggle()
});
}
@ -595,7 +595,7 @@ var RepositoryDatatable = (function(global) {
});
TABLE.on('column-reorder', function() {
FdSelection();
initRowSelection();
});
$('#assignRepositories, #unassignRepositories').click(function() {