()
| 271 | } |
| 272 | |
| 273 | function change_background_color() { |
| 274 | var selected_id = get_selected_nodeid(); |
| 275 | if (!selected_id) { |
| 276 | prompt_info('please select a node first.'); |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | _jm.set_node_color(selected_id, '#eee', null); |
| 281 | } |
| 282 | |
| 283 | function change_background_image() { |
| 284 | var selected_id = get_selected_nodeid(); |
nothing calls this directly
no test coverage detected