frameLoaded

Emitted when the iframe has finished loading -> corresponds to the iframe onload event.

Sample subscription code

sambaFrame.on('frameLoaded', () => {
  console.log('The iframe has been loaded');
});

Last updated