(interaction)
| 287 | } |
| 288 | |
| 289 | process_hover(interaction) { |
| 290 | super.process_hover(interaction); |
| 291 | if (interaction === 'tooltip') { |
| 292 | this.event_listeners.mouse_over = () => { |
| 293 | this.mouseover_handler(); |
| 294 | return this.refresh_tooltip(); |
| 295 | }; |
| 296 | this.event_listeners.mouse_move = this.move_tooltip; |
| 297 | this.event_listeners.mouse_out = () => { |
| 298 | this.mouseout_handler(); |
| 299 | return this.hide_tooltip(); |
| 300 | }; |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | change_selected_fill() { |
| 305 | if (!this.validate_color(this.model.get('selected_styles').selected_fill)) { |
no test coverage detected