Skip to content

Instantly share code, notes, and snippets.

@dmulvi
Last active February 20, 2016 17:30
Show Gist options
  • Save dmulvi/abc1409b4fc67443eb99 to your computer and use it in GitHub Desktop.
Save dmulvi/abc1409b4fc67443eb99 to your computer and use it in GitHub Desktop.
SugarCRM - easily create a custom handlebars helper
/* just throw this in the initialize method of your custom view */
window.Handlebars.registerHelper('trimString', function(module) {
var moduleShort = module.substring(0,2);
return new Handlebars.SafeString(moduleShort);
});
// force extra lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment