mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-13 20:56:52 +08:00
13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
function initTable() {
|
|
RepositoryDatatable.destroy()
|
|
RepositoryDatatable.init($('#content').attr('data-repo-id'));
|
|
RepositoryDatatable.redrawTableOnSidebarToggle();
|
|
onClickToggleAssignedRecords();
|
|
}
|
|
|
|
// initialze repository datatable
|
|
initTable();
|
|
}());
|