If you have a JavaScript file (bug.js) containing e.g.
And include it with a line like
<script language="javascript" type="text/javascript" src="bug.js"></script>
then Actinic displays a warning at Upload time
You can safely ignore this error and things proceed as expected.
Workaround. The follwing code change seems to prevent this error.
Code:
// upload annoyance demo var x = 'thing.jpg';
<script language="javascript" type="text/javascript" src="bug.js"></script>
then Actinic displays a warning at Upload time
While Actinic was generating your store pages, it found that some of your layouts contain links to files that Actinic cannot find on your computer....
Workaround. The follwing code change seems to prevent this error.
Code:
// upload annoyance demo var x = 'thing' + '.jpg';
Comment