Skip to content

Instantly share code, notes, and snippets.

@malles
Created January 24, 2015 12:49
Show Gist options
  • Select an option

  • Save malles/e335de7cf43fde0098c1 to your computer and use it in GitHub Desktop.

Select an option

Save malles/e335de7cf43fde0098c1 to your computer and use it in GitHub Desktop.
strip Joomla docs
//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