Skip to content

Instantly share code, notes, and snippets.

@mmintel
Created June 21, 2018 09:15
Show Gist options
  • Save mmintel/8a99111c2192a95a61208c3b514c5972 to your computer and use it in GitHub Desktop.
Save mmintel/8a99111c2192a95a61208c3b514c5972 to your computer and use it in GitHub Desktop.
import View from './view';
import Model from './model';
import Controller from './controller';
export default class Tooltip {
constructor(options) {
this.model = new Model();
this.controller = new Controller(this.model);
this.view = new View(this.controller, options);
}
show() {
this.controller.show();
}
hide() {
this.controller.hide();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment