summaryrefslogtreecommitdiff
path: root/custom.js
diff options
context:
space:
mode:
Diffstat (limited to 'custom.js')
-rw-r--r--custom.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/custom.js b/custom.js
index ccd057a..417a52b 100644
--- a/custom.js
+++ b/custom.js
@@ -136,4 +136,14 @@ $([IPython.events]).on('notebook_loaded.Notebook', function(){
$comment_modal.find(".modal-body").html($comment_frame);
$comment_modal.modal("show");
});
+
+});
+
+/* hiding running/clusters links */
+$("#tabs a").each(function(index, element) {
+ var href = $(this).attr("href");
+ console.log($(this).attr("href"));
+ if(href == "#running" || href == "#clusters") {
+ $(this).hide();
+ }
});