Skip to content

Instantly share code, notes, and snippets.

@lampe
lampe / gist:5bda16cf269f5d271598
Created February 5, 2015 23:53
meteor blaze notes
//HTMLJS
HTML.Raw("<div> <p> ich bin ein paragraph </p> </div>");
HTML.DIV(HTML.P("ich bin ein paragraph"));
HTML.DIV({'class': 'someDiv'}, HTML.P("ich bin ein paragraph"));
HTML.IMG({'class': 'someImg', "src": "http://i.imgur.com/UuGT4co.png"});
HTML.toHTML(HTML.DIV({'class': 'someDiv'}, HTML.P("ich bin ein paragraph")));
//Tracker
FancyReactivnes = function (value) { // much goodnes. much pretty. WoW
this.curValue = value;