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,10 +375,10 @@ var RepositoryDatatable = (function(global) {
} }
function disableCheckboxToggleOnCheckboxPreview(){ function disableCheckboxToggleOnCheckboxPreview(){
$(".checklist-dropdown").click(function(e) { $('.checklist-dropdown').click(function(e) {
e.stopPropagation(); e.stopPropagation();
$(e.currentTarget).find("ul").toggle() $(e.currentTarget).find('ul').toggle()
}); });
} }
// Adjust columns width in table header // Adjust columns width in table header
@ -595,7 +595,7 @@ var RepositoryDatatable = (function(global) {
}); });
TABLE.on('column-reorder', function() { TABLE.on('column-reorder', function() {
FdSelection(); initRowSelection();
}); });
$('#assignRepositories, #unassignRepositories').click(function() { $('#assignRepositories, #unassignRepositories').click(function() {