Skip to content

Instantly share code, notes, and snippets.

@egtann
Created December 9, 2012 05:35
Show Gist options
  • Save egtann/4243466 to your computer and use it in GitHub Desktop.
Save egtann/4243466 to your computer and use it in GitHub Desktop.
// 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