blob: a2d59a6b1fc99a01ba479ce0035dc3ecb8abee8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function openWithSection(root, section) {
if (root.shouldBeVisible) {
root.close();
} else {
root.expandedSection = section;
root.open();
}
}
function toggleSection(root, section) {
if (root.expandedSection === section) {
root.expandedSection = "";
root.expandedWidgetIndex = -1;
} else {
root.expandedSection = section;
}
}
|