Skip to content

Commit

Permalink
[imp] v1.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
phproberto committed Jun 16, 2015
1 parent 9a13676 commit f608cd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion mootable.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,13 @@ function onBeforeCompileHead()

// Disable mootools javascript
$this->disableScript('/media/system/js/mootools-core.js');
if(version_compare(JVERSION,'3.3','<')) {

// From v3.3 core does not require mootools anymore
if (version_compare(JVERSION, '3.3', '<'))
{
$this->disableScript('/media/system/js/core.js');
}

$this->disableScript('/media/system/js/mootools-more.js');
$this->disableScript('/media/system/js/caption.js');
$this->disableScript('/media/system/js/modal.js');
Expand Down
4 changes: 2 additions & 2 deletions mootable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<extension version="2.5" type="plugin" group="system" method="upgrade">
<name>PLG_SYS_MOOTABLE</name>
<author>Roberto Segura</author>
<creationDate>February 2014</creationDate>
<creationDate>June 2015</creationDate>
<copyright>Copyright (C) 2012-2013 Roberto Segura. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<authorEmail>roberto@phproberto.com</authorEmail>
<authorUrl>http://digitaldisseny.com/en/extensions/showtags-content-tags-joomla-plugin</authorUrl>
<version>1.1.2</version>
<version>1.1.3</version>
<description>PLG_SYS_MOOTABLE_XML_DESC</description>
<files>
<folder>forms</folder>
Expand Down

0 comments on commit f608cd5

Please sign in to comment.