33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-01-03 07:12:36 +00:00

Use the 3.7 media loader signatures

This commit is contained in:
Michael Babker 2016-11-20 15:36:21 -06:00
parent 2db9fe7a76
commit 58a4d5af97
3 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@
\JHtml::_('jquery.framework'); \JHtml::_('jquery.framework');
\JHtml::_('behavior.core'); \JHtml::_('behavior.core');
\JHtml::_('script', 'com_patchtester/fetcher.js', false, true); \JHtml::_('script', 'com_patchtester/fetcher.js', array('version' => 'auto', 'relative' => true));
?> ?>

View File

@ -11,8 +11,8 @@
\JHtml::_('behavior.core'); \JHtml::_('behavior.core');
\JHtml::_('bootstrap.tooltip'); \JHtml::_('bootstrap.tooltip');
\JHtml::_('formbehavior.chosen', 'select'); \JHtml::_('formbehavior.chosen', 'select');
\JHtml::_('stylesheet', 'com_patchtester/octicons.css', array(), true); \JHtml::_('stylesheet', 'com_patchtester/octicons.css', array('version' => 'auto', 'relative' => true));
\JHtml::_('script', 'com_patchtester/patchtester.js', false, true); \JHtml::_('script', 'com_patchtester/patchtester.js', array('version' => 'auto', 'relative' => true));
if (count($this->envErrors)) : if (count($this->envErrors)) :
echo $this->loadTemplate('errors'); echo $this->loadTemplate('errors');

View File

@ -6,12 +6,12 @@
* @license GNU General Public License version 2 or later * @license GNU General Public License version 2 or later
*/ */
/** @var \PatchTester\View\DefaultHtmlView $this */ /** @var \PatchTester\View\Pulls\PullsHtmlView $this */
\JHtml::_('behavior.core'); \JHtml::_('behavior.core');
\JHtml::_('bootstrap.tooltip'); \JHtml::_('bootstrap.tooltip');
\JHtml::_('stylesheet', 'com_patchtester/octicons.css', array(), true); \JHtml::_('stylesheet', 'com_patchtester/octicons.css', array('version' => 'auto', 'relative' => true));
\JHtml::_('script', 'com_patchtester/patchtester.js', false, true); \JHtml::_('script', 'com_patchtester/patchtester.js', array('version' => 'auto', 'relative' => true));
if (count($this->envErrors)) : if (count($this->envErrors)) :
echo $this->loadTemplate('errors'); echo $this->loadTemplate('errors');