ember-fryctoria
ember-fryctoria copied to clipboard
Make ember data work offline with automatic sync.
… initializer Hello, The `store` initializer target currently is a [empty initializer](https://github.com/emberjs/data/blob/master/app/initializers/store.js#L10-L14) in Ember Data. I have an [RFC](https://github.com/emberjs/rfcs/pull/181) and a [PR](https://github.com/emberjs/data/pull/4657) to deprecate it a future Ember Data release....
Hi, I am using this ember-cli plugin, thanks for writing it and making it well organized. There is some sort of critical bug when used with Safari or Mobile safari...
The following is a work around for sideload. ``` javascript // posts are sideloaded with user store.find('user').then(function(){ if(store.all('post').get('length')) { store.syncer.syncDown('post'); } else { return store.find('post'); } }); ```
Temporary work around: Say you have a transform file like this: _app/transforms/moment.js_ ``` javascript /* global moment */ import Ember from 'ember'; import DS from 'ember-data'; import ENV from 'beauty-now-pro-ember/config/environment';...