Topic: Loading Symbol

Is there a way to remove the loading symbol (Juicebox logo). When view my web page with an embedded gallery, the Juicebox logo flashes for a few seconds before the content of the gallery loads. Is there a fix? Thanks!

Re: Loading Symbol

Set the showPreloader configuration option (the last entry in the General Options section) to 'FALSE' in your gallery's embedding code, e.g.:

<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId : "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222",
showPreloader: "FALSE"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->