Created
June 18, 2018 15:13
-
-
Save NickDeckerDevs/23ffef45b3cb6b3f7ef51cf78b1a9435 to your computer and use it in GitHub Desktop.
tierpoint webinar page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if( isset( $_GET ) && isset( $_GET[ 'id' ] ) ) { | |
| $webinar_id = $_GET[ 'id' ]; | |
| } | |
| ?> | |
| <div class="jsBrightTALKEmbedWrapper" style="width:100%; height:100%; position:relative;background: #ffffff;"> | |
| <script class="jsBrightTALKEmbedConfig" type="application/json"> | |
| { | |
| "channelId" : 14695, | |
| "language": "en-US", | |
| "commId" : <?php echo $webinar_id; ?>, | |
| "displayMode" : "standalone", | |
| "height" : "auto" | |
| } | |
| </script> | |
| <script src="https://www.brighttalk.com/clients/js/player-embed/player-embed.js" class="jsBrightTALKEmbed"></script> | |
| </div> | |
| <script> | |
| jQuery(window).load(function() { | |
| setTimeout(function() { | |
| jQuery('.jsBrightTALKEmbedWrapper > div').remove(); | |
| }, 1200); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment