Last active
September 25, 2019 23:23
-
-
Save MyklClason/95066a962eac4c6e2fd730de3ed2edfb to your computer and use it in GitHub Desktop.
Handlebars/Mustache helpers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global $, HandlebarsTemplates */ | |
// For use with https://github.com/leshill/handlebars_assets | |
function renderTemplate(template, context) { | |
return HandlebarsTemplates[template](context) | |
} | |
function renderTemplateAt(query, template, context) { | |
return ( | |
$(query).html( | |
renderTemplate(template, context) | |
) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment