()
| 261 | } |
| 262 | |
| 263 | function change_text_color() { |
| 264 | var selected_id = get_selected_nodeid(); |
| 265 | if (!selected_id) { |
| 266 | prompt_info('please select a node first.'); |
| 267 | return; |
| 268 | } |
| 269 | |
| 270 | _jm.set_node_color(selected_id, null, '#000'); |
| 271 | } |
| 272 | |
| 273 | function change_background_color() { |
| 274 | var selected_id = get_selected_nodeid(); |
nothing calls this directly
no test coverage detected