mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +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(){
|
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() {
|
||||||
|
|
Loading…
Reference in a new issue