Skip to content

Commit

Permalink
Update FA to 5.7.2 (#6206)
Browse files Browse the repository at this point in the history
  • Loading branch information
sshcli authored and 810 committed Feb 22, 2019
1 parent f2ee6b3 commit 5f5bb84
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function displayEdit()

if (KunenaFactory::getTemplate()->params->get('fontawesome'))
{
Factory::getDocument()->addScript('https://use.fontawesome.com/releases/v5.6.3/js/all.js', array(), array('defer' => true));
Factory::getDocument()->addScript('https://use.fontawesome.com/releases/v5.7.2/js/all.js', array(), array('defer' => true));
}

// Make the select list for the moderator flag
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function displayDefault()

if (KunenaFactory::getTemplate()->params->get('fontawesome'))
{
Factory::getDocument()->addScript('https://use.fontawesome.com/releases/v5.6.3/js/all.js', array(), array('defer' => true));
Factory::getDocument()->addScript('https://use.fontawesome.com/releases/v5.7.2/js/all.js', array(), array('defer' => true));
}

$this->display();
Expand Down
4 changes: 2 additions & 2 deletions src/components/com_kunena/template/crypsis/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ public function initialize()

if ($fontawesome)
{
$this->addScript('https://use.fontawesome.com/releases/v5.6.3/js/all.js', array(), array('defer' => true));
$this->addScript('https://use.fontawesome.com/releases/v5.6.3/js/v4-shims.js', array(), array('defer' => true));
$this->addScript('https://use.fontawesome.com/releases/v5.7.2/js/all.js', array(), array('defer' => true));
$this->addScript('https://use.fontawesome.com/releases/v5.7.2/js/v4-shims.js', array(), array('defer' => true));
}

// Load template colors settings
Expand Down
4 changes: 2 additions & 2 deletions src/components/com_kunena/template/crypsisb3/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ public function initialize()

if ($fontawesome)
{
$this->addScript('https://use.fontawesome.com/releases/v5.6.3/js/all.js', array(), array('defer' => true));
$this->addScript('https://use.fontawesome.com/releases/v5.6.3/js/v4-shims.js', array(), array('defer' => true));
$this->addScript('https://use.fontawesome.com/releases/v5.7.2/js/all.js', array(), array('defer' => true));
$this->addScript('https://use.fontawesome.com/releases/v5.7.2/js/v4-shims.js', array(), array('defer' => true));
}

$icons = $this->ktemplate->params->get('icons');
Expand Down

0 comments on commit 5f5bb84

Please sign in to comment.