Skip to content

Instantly share code, notes, and snippets.

@sshadmand
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sshadmand/beeb2548962cb1ec1ff5 to your computer and use it in GitHub Desktop.
Save sshadmand/beeb2548962cb1ec1ff5 to your computer and use it in GitHub Desktop.
Handlebars Helpers: If Greater Than ... Else ...
Handlebars.registerHelper('ifgt', function(val1, val2, options) {
console.log(val1, val2)
if (val1 > val2){
return options.fn(this);
}
return options.inverse(this);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment