marko/test/test-project/popover-tag.js
Patrick Steele-Idem f4293c890f Fixing tests
2014-03-04 16:30:06 -07:00

9 lines
249 B
JavaScript

var raptorTemplates = require('../../');
exports.render = function(input, context) {
raptorTemplates.render(require.resolve('./popover.rhtml'), {
content: input.content,
title: input.title,
tag: input
}, context);
};