()
| 346 | } |
| 347 | |
| 348 | function collapse() { |
| 349 | var selected_id = get_selected_nodeid(); |
| 350 | if (!selected_id) { |
| 351 | prompt_info('please select a node first.'); |
| 352 | return; |
| 353 | } |
| 354 | |
| 355 | _jm.collapse_node(selected_id); |
| 356 | } |
| 357 | |
| 358 | function toggle() { |
| 359 | var selected_id = get_selected_nodeid(); |
nothing calls this directly
no test coverage detected