Skip to content

Instantly share code, notes, and snippets.

@bookwyrm
Created November 3, 2015 18:41
Show Gist options
  • Save bookwyrm/056d8464cc3525b5f4bc to your computer and use it in GitHub Desktop.
Save bookwyrm/056d8464cc3525b5f4bc to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('data-type', function(arg) {
if ( arg.indexOf('image/svg') !== -1 ) {
return 'svg';
} else if ( arg.indexOf('image/png') !== -1 ) {
return 'png';
} else {
return 'png-fallback';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment