Remove async
authorSteve Sutton <steve@gaslightmedia.com>
Wed, 14 Jun 2017 16:43:23 +0000 (12:43 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Wed, 14 Jun 2017 16:43:23 +0000 (12:43 -0400)
jquery is getting errors with this in.

Toolkit/Common.php

index ea062a8..2ff5197 100644 (file)
@@ -897,7 +897,7 @@ class Toolkit_Common
             unset($uniqueScripts[$key]);
             array_unshift($uniqueScripts, $jquery);
         }
-        $format = '<script async type="text/javascript" src="%s"></script>';
+        $format = '<script type="text/javascript" src="%s"></script>';
 
         $ret = '';
         $baseUrlStrLen = strlen(MEDIA_BASE_URL);