Guest User

Untitled

a guest
Jun 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /*
  2. * highlight-text.js
  3. */
  4. export function yellow(text) {
  5. return Ember.String.htmlSafe('<span class='yellow'>'+text+'</span>');
  6. }
  7.  
  8. export function red(text) {
  9. return Ember.String.htmlSafe('<span class='red'>'+text+'</span>');
  10. }
  11.  
  12. export yellow helper(yellow);
  13. export default helper(red);
Add Comment
Please, Sign In to add comment