Fixed inconsistency in JS component load order between CDN sites and non-CDN sites
authorDan
Wed, 08 Jul 2009 22:44:46 -0400
changeset 1047 d996bb6d6e74
parent 1046 cfc6c30c5e2d
child 1048 7b9132bfb5ce
Fixed inconsistency in JS component load order between CDN sites and non-CDN sites
includes/template.php
--- a/includes/template.php	Wed Jul 08 22:27:24 2009 -0400
+++ b/includes/template.php	Wed Jul 08 22:44:46 2009 -0400
@@ -549,7 +549,7 @@
     {
       // we're on a CDN, point to static includes
       // CLI javascript compression script: includes/clientside/jscompress.php
-      $js_head = '<script type="text/javascript" src="' . cdnPath . '/includes/clientside/static/enano-lib-basic.js"></script>';
+      $js_head = '';
       
       if ( !empty($this->js_preload) )
       {
@@ -582,6 +582,8 @@
     </script>";
       }
       
+      $js_head .= '<script type="text/javascript" src="' . cdnPath . '/includes/clientside/static/enano-lib-basic.js"></script>';
+      
       $js_foot = <<<JSEOF
     <script type="text/javascript">
       // This initializes the Javascript runtime when the DOM is ready - not when the page is