Reply To: Catch Trials

PennController for IBEX Forums Support Catch Trials Reply To: Catch Trials

#5754
Jeremy
Keymaster

Hi Nickolas,

I haven’t added an option to customize this message yet, so you’ll have to use the hack from this message

const replacePreloadingMessage = ()=>{
    const preloadingMessage = $(".PennController-PennController > div");
    if (preloadingMessage.length > 0 && preloadingMessage[0].innerHTML.match(/^<p>Please wait while the resources are preloading/))
        preloadingMessage.html("<p>Loading, please wait</p>");
    window.requestAnimationFrame( replacePreloadingMessage );
};
window.requestAnimationFrame( replacePreloadingMessage );

Jeremy