Ross Spiller

May 09 01:15 PM

Hi Sandro,

Can you pass this to Lee, or another dev/qa person to investigate.

We’re testing the ChaChingo Bingo postroll flex video on IE10 and I have noticed that the MediaBrix ad seems to load (I can hear the audio from the video playing) but I cannot see the MediaBrix video or popup or overlay. Although, the MediaBrix overlay seems to be in effect - - given that I cannot click on any buttons or links on the document (this flex MediaBrix ad does not allow the user to click off or X out of the video).

I’ve tried to repeat this using IE11 in emulation mode for IE10 but do not see the problem.

Steph reported this was happening in Chrome but I cannot duplicate it in Chrome on my computer.

In the IE10 console, there was a javascript error on mbrix loader.js that I was able to see on two separate tests.

When looking at that area of the loader.js I noticed that there is a trailing comma at the end of the parameters in the payload object. I know IE doesn’t like trailing commas, so I’m wondering if this could be causing the problem?

Is this a known issue, or something with the way we have the vars configed (see snippet at bottom)

MediaBrix Loader.js trailing comma

logPostUserData : function(){

var payload = {

"euui": null,

"myfbuserid": null, // From publisher

"orderName": null,

"adid": null,

"crid": null,

"siteName": null,

"zone": null,

"siteID": null,

"host": document.domain,

"session": null,

"uniqueID": null,

"product_type": null,

"vertical": null,

"postUrl" : "//gsn-us-metrics.tbliab.net/", //Domain of the metrics server

}

SNIPPET FROM MY PAGE:

<!--[if GT IE 7]>

<script type="text/javascript" src="https://mediabrix.hs.llnwd.net/o38/gsn/assets/js/mbrix_loader.js" id="mediabrix_loader"></script>

<![endif]-->

<![if !IE]>

<script type="text/javascript" src="https://mediabrix.hs.llnwd.net/o38/gsn/assets/js/mbrix_loader.js" id="mediabrix_loader"></script>

<![endif]>

        

<script type="text/javascript" language="javascript">

            var chachingoFlexVars = {

            "version" : "2.0",

            "adUnit" : "GSN_gsn/gsn_chachingo_test",

            "adInstance" : "videoPostRoll",

            "top" : "220",

            "uid" : "23|chachingo",

            "title" : "See your selected numbers after this message!",

            "loadingText" : "Loading...",

            "gameName" : "gsn",

            "adVerification" : "mbDisplay",

            "rewardConfirmation" : "mbComplete",

            "rewardEncryption" : "",

            "adClosed" : "mbClose",

            //"cpvOn" : false,

            "psf" : "http://stratego.worldwinner.com:8002/mediabrix.html"

            }

if ( typeof loadMediaBrix == 'function' )

{

loadMediaBrix(chachingoFlexVars);

}

~Ross