diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-17 11:44:21 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-17 11:44:21 +0800 |
commit | 0af497625be03bea330b02738e6ba2c6f2c492e9 (patch) | |
tree | 9747eb2992f5529b3df32b7dd02a9a1397e100dd /fg21sim/webui/static/js | |
parent | f34766376b6a77b740f2d218de901062b6de4cf6 (diff) | |
download | fg21sim-0af497625be03bea330b02738e6ba2c6f2c492e9.tar.bz2 |
webui: Add panel toggle and allow expand/collapse its body
Diffstat (limited to 'fg21sim/webui/static/js')
-rw-r--r-- | fg21sim/webui/static/js/main.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fg21sim/webui/static/js/main.js b/fg21sim/webui/static/js/main.js index 25bc12d..7f5b582 100644 --- a/fg21sim/webui/static/js/main.js +++ b/fg21sim/webui/static/js/main.js @@ -82,4 +82,21 @@ $(document).ready(function () { var nav_height = $("nav.navigation").outerHeight(); scrollTarget(nav_height); }); + + // Panel toggle control + $(".panel-title > .toggle").on("click", function () { + var toggle = $(this); + var body = toggle.closest(".panel").find(".panel-body"); + if (body.is(":visible")) { + body.slideUp("fast"); + toggle.removeClass("fa-chevron-circle-up") + .addClass("fa-chevron-circle-down") + .attr("title", "Expand contents"); + } else { + body.slideDown("fast"); + toggle.removeClass("fa-chevron-circle-down") + .addClass("fa-chevron-circle-up") + .attr("title", "Collapse contents"); + } + }); }); |