Created
January 26, 2015 12:59
-
-
Save digilord/0bfbccb09affb31e1a47 to your computer and use it in GitHub Desktop.
This file contains 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
Template.user.events | |
'click .done-button': (event, template) -> | |
console.log 'Clicked done-button: ', this |
This file contains 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
<template name='user'> | |
{{#contentFor "headerTitle"}} | |
<h1 class="title">Edit</h1> | |
{{/contentFor}} | |
{{#contentFor "headerButtonLeft"}} | |
<a class='button button-icon' data-nav-direction="back" href="/users">Back</a> | |
{{/contentFor}} | |
{{#contentFor "headerButtonRight"}} | |
<button class="button button-icon done-button">Done</button> | |
{{/contentFor}} | |
<p>Body text for main yield</p> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment