9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
Tracker.autorun(function () {
|
|
var id = Session.get('controller_id');
|
|
if (id) {
|
|
Meteor.subscribe("sensor_data", id);
|
|
var hamo = Meteor.subscribe("controller_state", id);
|
|
console.log(hamo);
|
|
}
|
|
});
|