Hi, the foollowing is my setup
```
ar boxFilePicker = new Box.FilePicker();
boxFilePicker.show(folderId, accessToken, {
container: '.box-container'
});
boxFilePicker.addListener('choose', function(x,y){
console.log('choose',x,y);
});
boxFilePicker.addListener('cancel', function(x,y){
console.log('cancel',x,y);
});
```
When embedding on page the either event is not firing.
BTW, when I used `modal` mode they worked... any ideas pls?