PennController for IBEX › Forums › Support › Catch Trials › Reply To: Catch Trials
		July 6, 2020 at 12:03 pm
		
		#5754
		
		
		
	
 Jeremy
JeremyKeymaster
		
		
	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