SHARE
TWEET

Untitled

a guest Jan 25th, 2016 50 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .factory 'SearchFilter', [()->
  2.         f = {}
  3.  
  4.         f.text = ""
  5.  
  6.         f.setText = (text) ->
  7.             f.text = text.trim()
  8.  
  9.         f.clear = ()->
  10.             f.text = ""
  11.  
  12.         f
  13.     ]
  14.  
  15.     .factory 'GroupListFilters',['CategoriesFilter', 'TagsFilter', 'SearchFilter', 'OrderBy', (CategoriesFilter, TagsFilter, SearchFilter, OrderBy) ->
  16.         f = {}
  17.  
  18.         f.tags = TagsFilter
  19.         f.search = SearchFilter
  20.         f.categories = CategoriesFilter
  21.  
  22.         f.search = (query) ->
  23.             f.search.clear()
  24.             f.search.setText query
  25.  
  26.             ....
  27.         f
  28.     ]
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top