summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/dashboard/static/js/dataTables-sort.js
diff options
context:
space:
mode:
authormaxbr <maxbr@mi.fu-berlin.de>2016-08-19 17:10:31 +0200
committermaxbr <maxbr@mi.fu-berlin.de>2016-08-19 17:10:31 +0200
commit79aec84973032e15ae9d36fcbd7d7d42af3283d1 (patch)
treec02fbd44cd53b0eed105bc648c743b10c62bfeb4 /pharos-dashboard/dashboard/static/js/dataTables-sort.js
parent639cd5db77064c275253828780c17ae59551d95c (diff)
Split the dashboard into different apps, add tests
JIRA: RELENG-12 Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/dashboard/static/js/dataTables-sort.js')
-rw-r--r--pharos-dashboard/dashboard/static/js/dataTables-sort.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/pharos-dashboard/dashboard/static/js/dataTables-sort.js b/pharos-dashboard/dashboard/static/js/dataTables-sort.js
deleted file mode 100644
index 7189ca1..0000000
--- a/pharos-dashboard/dashboard/static/js/dataTables-sort.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * This is a sort function for dataTables to sort tables by the status column.
- * The order should be: online < online/idle < offline
- */
-jQuery.extend(jQuery.fn.dataTableExt.oSort, {
- "status-pre": function (a) {
- switch (a) {
- case 'online':
- return 1;
- case 'online / idle':
- return 2;
- case 'offline':
- return 3;
- default:
- return a;
- }
- },
-
- "status-asc": function (a, b) {
- return ((a < b) ? -1 : ((a > b) ? 1 : 0));
- },
-
- "status-desc": function (a, b) {
- return ((a < b) ? 1 : ((a > b) ? -1 : 0));
- }
-}); \ No newline at end of file