Created
December 9, 2012 05:35
-
-
Save egtann/4243466 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
// Send a message to.... No name pops up | |
<template name="messaging"> | |
<h3>Send a message to {{name}}</h3> | |
</template> | |
// Renders template correctly, but Template.messaging.name = "" | |
$(event.target).after( | |
Meteor.render( function() { | |
return Template.messaging({name: this.name}); | |
}) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment