aboutsummaryrefslogtreecommitdiff
path: root/uploader/static/js/datatables.js
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/static/js/datatables.js')
-rw-r--r--uploader/static/js/datatables.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/uploader/static/js/datatables.js b/uploader/static/js/datatables.js
index ff7a680..8d54a84 100644
--- a/uploader/static/js/datatables.js
+++ b/uploader/static/js/datatables.js
@@ -49,3 +49,9 @@ var dtAddRowClickHandler = (tableId) => {
});
});
};
+
+
+var dtAddCommonHandlers = (tableId) => {
+ dtAddRowSelectionHandler(tableId);
+ dtAddRowClickHandler(tableId);
+}