yang2007chun
yang2007chun
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';...
https://github.com/benjamn/reify https://forums.meteor.com/t/announcing-meteor-1-3-3-ddp-batching-babelrc-support-improved-import-declarations/24874
1. get all subscriptions `Meteor.default_connection._subscriptions` 2. create reducers for these subscriptions
When we call signOut, the token in LocalStorage is reset, but we are not using the reset token in the LocalStorage. Instead we are using the previous one which is...