Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 922 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 922 Bytes

Mustache.js + Ender

Overview

This is a wrapper around mustache templates to make them play nice with ender.

Usage

You can add the plugin to your build with ender add ender-mustache. If a template is publically available at http://yourdomain.com/path/to/template.mustache then you can get the result of rendering the template with ...

var result = $.render('/template/path.mustache', {variable: 'value'})

... or automatically insert it into a parent element with ...

$.render('/template/path.mustache', {variable: 'value'}, '#some .selector')

Known Issues

  • I'm currently loading every template with an Ajax request. In production mode it should include precompiled templates in the javascript build using hogan.

  • I use document.querySelectorAll which is going to break in IE 6 & 7.