Skip to content

Commit

Permalink
v1.3.3 released
Browse files Browse the repository at this point in the history
  • Loading branch information
itxchandan committed Aug 16, 2021
1 parent 465e3b5 commit 94b8734
Show file tree
Hide file tree
Showing 21 changed files with 207 additions and 682 deletions.
8 changes: 6 additions & 2 deletions component.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,14 @@

if($addtemplatejs){
JHtml::_('script', juri::root().'media/jui/js/bootstrap.min.js', array('version' => 'auto', 'relative' => true));
JHtml::_('script', 'isis.js', array('version' => 'auto', 'relative' => true));
if (ASTROID_JOOMLA_VERSION < 4) {
JHtml::_('script', 'isis.js', array('version' => 'auto', 'relative' => true));
}
}

JHtml::_('stylesheet', 'isis/isis.css', array('version' => 'auto', 'relative' => true));
if (ASTROID_JOOMLA_VERSION < 4) {
JHtml::_('stylesheet', 'isis/isis.css', array('version' => 'auto', 'relative' => true));
}

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));
Expand Down
3 changes: 3 additions & 0 deletions error.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
$params = Astroid\Framework::getTemplate()->getParams(); // Astroid Params

Astroid\Helper\Head::meta(); // site meta
Astroid\Component\Utility::custom(); // custom code
Astroid\Helper\Head::scripts(); // site scripts
Astroid\Helper\Head::favicon(); // site favicon
Astroid\Component\Utility::error(); // error page styling
Expand Down Expand Up @@ -50,6 +51,8 @@
echo Astroid\Helper\Head::styles();
echo $document->renderLinks();
echo $document->getStylesheets();
echo $document->getScripts('head');
echo $document->getCustomTags('head');
?>
</head>

Expand Down
66 changes: 0 additions & 66 deletions html/com_config/config/default.php

This file was deleted.

28 changes: 0 additions & 28 deletions html/com_config/config/default_metadata.php

This file was deleted.

28 changes: 0 additions & 28 deletions html/com_config/config/default_seo.php

This file was deleted.

28 changes: 0 additions & 28 deletions html/com_config/config/default_site.php

This file was deleted.

201 changes: 0 additions & 201 deletions html/com_config/modules/default.php

This file was deleted.

Loading

0 comments on commit 94b8734

Please sign in to comment.