You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2025. It is now read-only.
I just can't understand these lines of code, and the this.new is always undefined:
if (!this.new) { this.async(function() { this.syncToMemory(function() { this._log('Updating data from Firebase value:', value); this.set('data', value); }); }); }Should it may be:
if (!this.isNew) { this.async(function() { this.syncToMemory(function() { this._log('Updating data from Firebase value:', value); this.set('data', value); }); }); }