dconsole
dconsole copied to clipboard
Support nested fields for the monitoring.
In some cases are need to use that construction
DC.monitorField(object, 'field.nestedField', 'someProp');
because 'field' for some reasons can be null:
object.field = null;
// ...
DC.monitorField(object.field, 'nestedField', 'someProp'); // log error
Thanks, its a nice feature, guess I'll have to include tests to make sure this works (multi targets , or in future versions etc..), will merge it soon :+1: :