scinote-web/app/assets/javascripts/repositories/my_module_repository.js

16 lines
348 B
JavaScript

(function() {
'use strict';
function initTable() {
RepositoryDatatable.destroy()
RepositoryDatatable.init($('#content').attr('data-repo-id'));
RepositoryDatatable.redrawTableOnSidebarToggle();
}
// initialze repository datatable
$(document).ready(function() {
initTable()
onClickToggleAssignedRecords();
});
})();