()
| 336 | } |
| 337 | |
| 338 | function expand() { |
| 339 | var selected_id = get_selected_nodeid(); |
| 340 | if (!selected_id) { |
| 341 | prompt_info('please select a node first.'); |
| 342 | return; |
| 343 | } |
| 344 | |
| 345 | _jm.expand_node(selected_id); |
| 346 | } |
| 347 | |
| 348 | function collapse() { |
| 349 | var selected_id = get_selected_nodeid(); |
nothing calls this directly
no test coverage detected