awatson1978 / meteor-api

Meteor API with tab completion and syntax highlighting.
MIT License
80 stars 17 forks source link

Snippet Updates #52

Open awatson1978 opened 9 years ago

awatson1978 commented 9 years ago
<!-- old -->
<button name=""></button>
<template id=""></template>

<!-- new -->
<button id=""></button>
<template name=""></template>
//old
Template.appLayout.onRendered = function(){
};

//new
Template.appLayout.onRendered(function(){  
});
Template.appLayout.onCreated(function(){  
});
Template.appLayout.onDestroyed(function(){  
});