Last active
June 24, 2016 12:04
-
-
Save PanJarda/c40945f443622361aa20d55e8863ee23 to your computer and use it in GitHub Desktop.
StarUML javascript generator Riot extension
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
<detail> | |
/** | |
* @documentation: closes detail | |
* | |
* @param ecloses this dialog | |
* | |
*/ | |
close(e) { | |
//TODO: Implement Me | |
} | |
</detail> |
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
require('./detail.tag') | |
require('./navbar.tag') | |
<filebrowser> | |
<detail/> | |
<navbar/> | |
this.title = null; | |
this.state = null; | |
/** | |
* @documentation: Shows detail of file by its id. | |
* | |
* @param id | |
* | |
*/ | |
showDetail(id) { | |
//TODO: Implement Me | |
} | |
/** | |
* @documentation: Displays dialog for adding files/folders. | |
* | |
*/ | |
showAddDialog() { | |
//TODO: Implement Me | |
} | |
/** | |
* @documentation: Switch state to search. | |
* | |
*/ | |
search() { | |
//TODO: Implement Me | |
} | |
</filebrowser> |
Author
PanJarda
commented
Jun 24, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment