Log events in visualization
This commit is contained in:
parent
0c542da265
commit
9c7161c8d9
11 changed files with 777 additions and 6 deletions
|
|
@ -1,3 +1,4 @@
|
|||
import { logger } from '../logger';
|
||||
import { Scenes } from '../scenes/scenes';
|
||||
import store from '../store';
|
||||
|
||||
|
|
@ -107,6 +108,11 @@ export class Intro {
|
|||
return;
|
||||
} else {
|
||||
this.errorRef.style.display = 'none';
|
||||
|
||||
store.setState({
|
||||
uid: `${Date.now()}_${name.replace(/[^a-zA-Z ]/g, '').toLowerCase()}`,
|
||||
});
|
||||
|
||||
this.sendDemographicData(name, age, background, experience);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue