Guest User

Untitled

a guest
Oct 17th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Scm.QUERY_ALL_PRODUCTS = SC.Query.local(Scm.Product);
  2.  
  3.  
  4.  
  5. fetch: function(store, query) {
  6. if (query == Scm.QUERY_ALL_PRODUCTS) {
  7. SC.Request.getUrl('/products.json').json()
  8. .notify(this, 'fetchDidComplete', store, query)
  9. .send()
  10. return YES;
  11. }
  12. },
Add Comment
Please, Sign In to add comment