Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagehtml
<iframe id="gsm-game-tracker" scrolling="no" src="https://gsm-widgets-uat.betstream.betgenius.com/americanfootballgametracker?group[0][fixtureId]=6992769&productName=sportsgossip" width="100%" height="320px" style="border: 0;"></iframe>

Full Betting Experience (FBE) iframe setup

Example:

...

In case you would like to implement FBE, which contains more features like Roster, Inactive players, NFL live, up-coming and past scores games and, NGS stats for fastest speed player in the field.

The iframe should have an id and the scrolling property as “no” to be able to render the content properly.

Also, the client should place this script anywhere in the root of his site so the widget template will be able to communicate and handle height changes to display de FBE content.

Code Block
languagejs
window.addEventListener('message', () => {
    if (event.origin === 'https://gsm-widgets-uat.betstream.betgenius.com' && event.data.type && event.data.type === 'widget:updateIframeHeight') {
      document.getElementById("gsm-game-tracker").style.height = event.data.value;
    }
});

...

Stand-Alone Component

In case that require component stand-alone need use a different URL

...