(groupId)
| 1483 | return groupSetCreated; |
| 1484 | |
| 1485 | function switchGroup(groupId) { |
| 1486 | var groupCreatedToShow = retrieveAndVerifyGroup(groupId); |
| 1487 | if (groupCreatedToShow.groupIndex === groupCreatedToShow.groupParent.currentGroupIndex) { |
| 1488 | return; |
| 1489 | } |
| 1490 | var groupCreatedToHide = groupCreatedToShow.groupParent.children[ |
| 1491 | groupCreatedToShow.groupParent.currentGroupIndex |
| 1492 | ]; |
| 1493 | showHideGroupInGroupSet(groupCreatedToHide, false); |
| 1494 | showHideGroupInGroupSet(groupCreatedToShow, true); |
| 1495 | groupCreatedToShow.groupParent.currentGroupIndex = groupCreatedToShow.groupIndex; |
| 1496 | } |
| 1497 | |
| 1498 | function getGroupSetInputState() { |
| 1499 | var state = {currentGroupIndex: groupSetCreated.currentGroupIndex}; |
no test coverage detected
searching dependent graphs…