()
| 356 | } |
| 357 | |
| 358 | function toggle() { |
| 359 | var selected_id = get_selected_nodeid(); |
| 360 | if (!selected_id) { |
| 361 | prompt_info('please select a node first.'); |
| 362 | return; |
| 363 | } |
| 364 | |
| 365 | _jm.toggle_node(selected_id); |
| 366 | } |
| 367 | |
| 368 | function expand_all() { |
| 369 | _jm.expand_all(); |
nothing calls this directly
no test coverage detected