We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbeff2f commit eb1dc03Copy full SHA for eb1dc03
playground/entities.html
@@ -49,8 +49,11 @@
49
models: []
50
}
51
52
- ], (updatedEntities) => {
53
- updateManager.displayUpdate('update', updatedEntities);
+ ], (entity_id, models) => {
+ updateManager.displayUpdate('update', {
54
+ entity_id: entity_id,
55
+ models: models
56
+ });
57
});
58
59
// Keeps the subscription alive.
playground/events.html
@@ -61,8 +61,11 @@
61
62
],
63
is_historical,
64
- (updatedEvents) => {
65
- updateManager.displayUpdate('update', updatedEvents);
+ (entity_id, models) => {
66
67
68
69
70
71
0 commit comments