Created
May 11, 2018 14:37
-
-
Save mmintel/fc01edb5cbb6ad2a13503cf1f9a932e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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