Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function refreshInOneSecond(obj) {
  2.   Ember.run.later(function() {
  3.     obj.reload().then(refreshInOneSecond, dontRefresh);
  4.   }, 1000);  
  5. }
  6.  
  7. function dontRefresh(err) {
  8.   console.log('an error', err);
  9. }
  10.  
  11. store.find('post', 1).then(refreshInOneSecond, dontRefresh);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement