Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. angular.module('myCustomFilters', []).filter('checkmark', function() {
  2. return function(input) {
  3. return input ? true :false ;
  4. };
  5. });
  6.  
  7. angular.module('myApp', ['ngRoute','myAppControllers','myCustomFilters']);
  8.  
  9. <script src="js/controllers.js"></script>
  10. <script src="js/filters.js"></script>
  11.  
  12. <div>{{UserStatus | checkmark}}</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement