Advertisement
Guest User

Untitled

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