firesync
firesync copied to clipboard
Add Support for nested objects
Currently
var a = new FiresyncObject(ref);
a.items = [];
a.push('a');
will not work.
Same for objects.
As a workout set the items
property to be a FiresyncArray
.
This will probably be implemented as each inner object or array to be FiresyncObject
or FiresyncArray
. Should be pretty straight-forward.