Skip to content

Instantly share code, notes, and snippets.

@mmintel
Created May 11, 2018 14:37
Show Gist options
  • Select an option

  • Save mmintel/fc01edb5cbb6ad2a13503cf1f9a932e7 to your computer and use it in GitHub Desktop.

Select an option

Save mmintel/fc01edb5cbb6ad2a13503cf1f9a932e7 to your computer and use it in GitHub Desktop.
import Controller from './controller';
export default class ModalController extends Controller {
open(e) {
this.model.isOpen = true;
}
close(e) {
this.model.isOpen = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment