Hello Wayne,
We're sorry to hear you're having issues with this. Can you please confirm that your settings.js file is linked in your start.html file? You can view and edit your start.html file in Genie Administrator. That being said, depending on the skin you are using, you may need to add edit Javascript in the custom.js file so that your properties do not get overwritten.
Linking JS in start.html:
Code: Select all
<script type="text/javascript" src="/profoundui/userdata/custom/js/settings.js"></script>
You can find more information on configuration files here:
http://www.profoundlogic.com/docs/displ ... on+Options.
In my testing, I was using the Hybrid skin. I found, using Ctrl + F to search "animation", that in the
customize() function and the
pui.load function there were some lines of code that were overwriting my options. In the customize function, the following line kept overwriting my '
null' value for ["loading animation"]["css"]:
Code: Select all
pui["loading animation"]["css"] = 'pui-hybrid-animation';
I corrected this line to the following:
Code: Select all
if (pui["loading animation"]["css"] === 'pui-animation') {
pui["loading animation"]["css"] = 'pui-hybrid-animation';
}
But, you could comment it out if you prefer.
In the pui.onload function, I found the following lines:
Code: Select all
pui["loading animation"]["left"] = 10;
pui["loading animation"]["css"] = "pui-animation";
I commented out these lines so that they did no overwrite my options.
I placed my options at the top of the custom.js file, outside of any other function.
I hope that helps, but if you require additional assistance with this issue, could you please provide us with your Genie skin's folder? The folder would be located at /www/[instance_name]/htdocs/profoundui/userdata/genie skins/[skin_name]. Please zip that folder along with your settings.js file and email it to us at
support@profoundlogic.com for additional assistance. Please change blockable extensions like .js to .txt so that your email is more likely to be sent and received with the attachments intact.