MCPcopy Index your code
hub / github.com/bqplot/bqplot / process_hover

Method process_hover

js/src/Map.ts:289–302  ·  view source on GitHub ↗
(interaction)

Source from the content-addressed store, hash-verified

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)) {

Callers 1

process_interactionsFunction · 0.80

Calls 3

mouseover_handlerMethod · 0.95
mouseout_handlerMethod · 0.95
hide_tooltipMethod · 0.80

Tested by

no test coverage detected