diff options
author | Jayaram R Pai | 2014-07-06 21:59:58 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-07-06 21:59:58 +0530 |
commit | ebcda364123f1538f0e99896a9e80e60123a01df (patch) | |
tree | 2d473142cdeab9dc9e12994cc07d8032fd5eecc7 | |
parent | aa4e55882c6aa34aaad75f065ca43dbd39e61248 (diff) | |
download | custom-ebcda364123f1538f0e99896a9e80e60123a01df.tar.gz custom-ebcda364123f1538f0e99896a9e80e60123a01df.tar.bz2 custom-ebcda364123f1538f0e99896a9e80e60123a01df.zip |
hid running and clusters link
-rw-r--r-- | custom.css | 4 | ||||
-rw-r--r-- | custom.js | 10 |
2 files changed, 14 insertions, 0 deletions
@@ -35,3 +35,7 @@ This will always be an empty file in IPython height: 250px; border: none; } +/* hiding running/custom tabs */ +#running, #clusters { + display: none; +} @@ -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(); + } }); |