Created
January 24, 2015 12:49
-
-
Save malles/e335de7cf43fde0098c1 to your computer and use it in GitHub Desktop.
strip Joomla docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //strip out jui jquery | |
| foreach ($this->doc->_scripts as $url => $docInfo) { | |
| if ($this->isAdmin || !preg_match('#jui/js/jquery|\?jquery.min|\?jquery-noconflict|\?jquery-migrate#', $url)) { | |
| $newOrder[$url] = array( | |
| 'mime' => 'text/javascript', | |
| 'defer' => false, | |
| 'async' => false | |
| ); | |
| } | |
| } | |
| $this->doc->_scripts = $newOrder; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment