requirejs-tpl
v0.4.1
Published
A RequireJS plugin for requiring Knockout.js templates.
Downloads
57
Readme
Template plugin for RequireJs
Notice! this plugin requires the standard text plugin.
This plugin will allow you to require templates, as employed in KnockoutJS, via the ordinary dependency syntax.
Example:
define([
'tpl!templates/thing.ko'
], function () {
[... code ...]
});
The above will fetch the thing.ko
file, and insert it into the DOM in a script tag with the id thing
.