Skip to content

Instantly share code, notes, and snippets.

@nruth
Last active October 29, 2017 23:39
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 nruth/c4718e3bf17a9fa39c5612693e9157c2 to your computer and use it in GitHub Desktop.
Save nruth/c4718e3bf17a9fa39c5612693e9157c2 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
import config from 'medify-bmat-grader/config/environment';
export function prefixRootUrl([href]) {
if (config.environment !== 'production') {
return `${config.rootURL}${href}`;
} else {
return href;
}
}
export default Ember.Helper.helper(prefixRootUrl);
<img src={{prefix-root-url "assets/images/bla.png"}}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment