Skip to content

Instantly share code, notes, and snippets.

@btaitelb
Created June 3, 2012 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save btaitelb/2865017 to your computer and use it in GitHub Desktop.
Save btaitelb/2865017 to your computer and use it in GitHub Desktop.
if (Meteor.is_client) {
Template.hello.greeting = function () {
return "Welcome to keydownTest.";
};
Template.hello.events = {
'keydown .keytest' : function () {
// template data, if any, is available in 'this'
if (typeof console !== 'undefined')
console.log("You pressed the button");
}
};
}
if (Meteor.is_server) {
Meteor.startup(function () {
// code to run on server at startup
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment