looshi / Blaze-Haus

Edit blaze templates and css at runtime
6 stars 0 forks source link

Blaze Haus syntax should have a parity with Meteor Blaze Syntax #23

Open looshi opened 9 years ago

looshi commented 9 years ago

the current way to define helpers looks like this :

var arbitrayKey = {
  helpers : function(){
    // do stuff
  }
}

it should look like this :

Template.TemplateName.helpers({ key : function() {} })