mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-12-09 13:46:21 +08:00
fixed code according to hound styling comments
This commit is contained in:
parent
47d593f0db
commit
3b8a58b7db
1 changed files with 4 additions and 4 deletions
|
|
@ -90,8 +90,8 @@ var RepositoryDatatable = (function(global) {
|
||||||
$('#editDeleteCopy').show();
|
$('#editDeleteCopy').show();
|
||||||
$('#toolbarPrintLabel').show();
|
$('#toolbarPrintLabel').show();
|
||||||
}
|
}
|
||||||
$("#team-switch").css({"pointer-events":"visible", "opacity":"1"});
|
$("#team-switch").css({ 'pointer-events': 'visible', opacity: 1 });
|
||||||
$("#navigationGoBtn").prop('disabled', false);
|
$('#navigationGoBtn').prop('disabled', false);
|
||||||
} else if (currentMode === 'editMode') {
|
} else if (currentMode === 'editMode') {
|
||||||
$(TABLE_WRAPPER_ID).addClass('editing');
|
$(TABLE_WRAPPER_ID).addClass('editing');
|
||||||
$('.repository-save-changes-link').on('click', function() {
|
$('.repository-save-changes-link').on('click', function() {
|
||||||
|
|
@ -121,8 +121,8 @@ var RepositoryDatatable = (function(global) {
|
||||||
$('.dataTables_filter input').prop('disabled', true);
|
$('.dataTables_filter input').prop('disabled', true);
|
||||||
$('#toolbarPrintLabel').hide();
|
$('#toolbarPrintLabel').hide();
|
||||||
$('.repository-edit-overlay').show();
|
$('.repository-edit-overlay').show();
|
||||||
$("#team-switch").css({"pointer-events":"none", "opacity":"0.6"});
|
$("#team-switch").css({ 'pointer-events': 'none', opacity: 0.6 });
|
||||||
$("#navigationGoBtn").prop('disabled', true);
|
$('#navigationGoBtn').prop('disabled', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue