Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. 'use strict';
  2.  
  3. angular.
  4. module('core').
  5. filter('checkmark', function() {
  6. return function(input) {
  7. return input ? '\u2713' : '\u2718'; //u2713 was u2720, u2718 was u2765
  8. };
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement