We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e86fd commit 4c73c21Copy full SHA for 4c73c21
js/frame.js
@@ -88,6 +88,13 @@
88
$('input[type="button"][data-current!="chart"].show-chart-toggle').trigger('click');
89
});
90
91
+ // collapse other open subsections of this section
92
+ $('.viz-section-title').click(function () {
93
+ var grandparent = $(this).parent().parent();
94
+ grandparent.find('.viz-section-title.open ~ .viz-section-items').hide();
95
+ grandparent.find('.viz-section-title.open').removeClass('open');
96
+ });
97
+
98
$('#view-remote-file').click(function () {
99
var url = $(this).parent().find('#remote-data').val();
100
0 commit comments