mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
fix typo, fix codestyle
This commit is contained in:
parent
29458375ab
commit
6460d6e879
1 changed files with 5 additions and 5 deletions
|
@ -375,10 +375,10 @@ var RepositoryDatatable = (function(global) {
|
|||
}
|
||||
|
||||
function disableCheckboxToggleOnCheckboxPreview(){
|
||||
$(".checklist-dropdown").click(function(e) {
|
||||
e.stopPropagation();
|
||||
$(e.currentTarget).find("ul").toggle()
|
||||
});
|
||||
$('.checklist-dropdown').click(function(e) {
|
||||
e.stopPropagation();
|
||||
$(e.currentTarget).find('ul').toggle()
|
||||
});
|
||||
}
|
||||
|
||||
// Adjust columns width in table header
|
||||
|
@ -595,7 +595,7 @@ var RepositoryDatatable = (function(global) {
|
|||
});
|
||||
|
||||
TABLE.on('column-reorder', function() {
|
||||
FdSelection();
|
||||
initRowSelection();
|
||||
});
|
||||
|
||||
$('#assignRepositories, #unassignRepositories').click(function() {
|
||||
|
|
Loading…
Reference in a new issue