()
| 302 | } |
| 303 | |
| 304 | change_selected_fill() { |
| 305 | if (!this.validate_color(this.model.get('selected_styles').selected_fill)) { |
| 306 | this.highlight_g.selectAll('.selected').style('fill-opacity', 0.0); |
| 307 | } else { |
| 308 | this.highlight_g |
| 309 | .selectAll('.selected') |
| 310 | .style('fill-opacity', 1.0) |
| 311 | .style('fill', this.model.get('selected_styles').selected_fill); |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | change_selected_stroke() { |
| 316 | if ( |
no test coverage detected