Database Slider on Website Problem

Iceblade

Admiral
I can no longer move the slider on the website for the craft databases. Maybe a deprecated function is used?
 
Last edited:
Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "default-src 'self' img-src * 'unsafe-inline'". Note that 'script-src' was not explicitly set, so 'default-src' is used as a fallback.
 
Line 66 in gallery-ships.js:

Currently:
setTimeout('gallerySlide()',20);

Should probably be:
setTimeout(gallerySlide,20);
 
Back
Top