Page Preview Missing in Actinic
After importing a snapshot i noticed i could no longer preview the pages i was creating in actinic v8.5.2. I eventually found that the problem was caused by the javascript that was loading in the head section of the page.
You can turn the javascript off in preview mode by wrapping it in the following block:
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsPreviewMode%22%20%2f%3e%20%3d%3d%20false" > <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.form.js"></script> <script type="text/javascript" src="actiniccore.js"></script> <script type="text/javascript" src="actinicextras.js"></script> <script type="text/javascript" src="application.js"></script> </actinic:block>












