Skip to content

Instantly share code, notes, and snippets.

@kvprashant
Created May 27, 2012 04: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 kvprashant/2802217 to your computer and use it in GitHub Desktop.
Save kvprashant/2802217 to your computer and use it in GitHub Desktop.
meteorjs 'Uncaught ReferenceError: Template is not defined' error
/* CSS declarations go here */
<head>
<title>myapp</title>
</head>
<body>
{{> hello}}
</body>
<template name="hello">
<h1>Hello! Meteor is awesome!</h1>
{{greeting}}
<input type="button" value="Click" />
</template>
if (Meteor.is_client) {
Template.hello.greeting = function () {
return "Welcome to myapp.";
};
Template.hello.events = {
'click input' : 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
});
}
@kvprashant
Copy link
Author

notice html within h1 tag is changed. Nothing else.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment