hummingbird-me/kitsu-web

View on GitHub
app/components/ember-tether.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import Component from 'ember-tether/components/ember-tether';
import { invokeAction } from 'ember-invoke-action';

export default Component.extend({
  mouseEnter() {
    invokeAction(this, 'onHover');
  },

  mouseLeave() {
    invokeAction(this, 'onLeave');
  }
});