UNPKG

we-core

Version:

We.js is a node.js framework for build real time applications, sites or blogs!

20 lines (16 loc) 433 B
/** * We.js template event, allow add html with events * * usage: {{we-event event="we-html-body-start"}} */ module.exports = function(we) { return function eventHelper() { var opts = arguments[arguments.length-1]; if (!opts.hash.event) return ''; var html = { text: '' } ; we.events.emit(opts.hash.event, { we: we, html: html, options: opts }); return new we.hbs.SafeString(html.text); } }