summaryrefslogtreecommitdiffstats
path: root/gui/static/script.js
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-10-07 18:19:48 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-10-07 18:19:48 +0200
commitf02e4b97c487c980bc823f467e078a966f747bee (patch)
tree8b4d84eed3df78560e50576c762420ff35e777b4 /gui/static/script.js
parent77b399804d0b7f3bdabcf8c1adcd95beafd9c8ad (diff)
downloaddabmux-f02e4b97c487c980bc823f467e078a966f747bee.tar.gz
dabmux-f02e4b97c487c980bc823f467e078a966f747bee.tar.bz2
dabmux-f02e4b97c487c980bc823f467e078a966f747bee.zip
Add ability to change RC settings from gui
Diffstat (limited to 'gui/static/script.js')
-rw-r--r--gui/static/script.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/gui/static/script.js b/gui/static/script.js
index 231aa03..a585f9f 100644
--- a/gui/static/script.js
+++ b/gui/static/script.js
@@ -1,16 +1,4 @@
$(document).ready(function() {
- // Only show first tab
- $('#info div:not(:first)').hide();
-
- // Handle clicks on tabs to change visiblity of panes
- $('#info-nav li').click(function(event) {
- event.preventDefault();
- $('#info div').hide();
- $('#info-nav .current').removeClass("current");
- $(this).addClass('current');
- var clicked = $(this).find('a:first').attr('href');
- $('#info ' + clicked).fadeIn('fast');
- }).eq(0).addClass('current');
});