()
| 205 | } |
| 206 | |
| 207 | function modify_node() { |
| 208 | var selected_id = get_selected_nodeid(); |
| 209 | if (!selected_id) { |
| 210 | prompt_info('please select a node first.'); |
| 211 | return; |
| 212 | } |
| 213 | |
| 214 | // modify the topic |
| 215 | _jm.update_node(selected_id, '--- modified ---'); |
| 216 | } |
| 217 | |
| 218 | function move_to_first() { |
| 219 | var selected_id = get_selected_nodeid(); |
nothing calls this directly
no test coverage detected