Skip to content

Commit

Permalink
Fixed Font Awesome JS Error.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcordis committed Nov 11, 2018
1 parent 211d354 commit cf01348
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions com_biblestudy/admin/helpers/html/biblestudy.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,11 @@ public static function loadCss($params, $url = null, $extra = null)

if ($extra == 'font-awesome')
{
JHtml::script('https://use.fontawesome.com/releases/v5.3.1/js/all.js',
JHtml::script('https://use.fontawesome.com/releases/v5.5.0/js/all.js',
[],
['integrity' => 'sha384-kW+oWsYx3YpxvjtZjFXqazFpA7UP/MbiY4jvs+RWZo2+N94PFZ36T6TFkc9O3qoB', 'crossorigin' => 'anonymous', 'defer' => 'defer']
);
JHtml::script('https://use.fontawesome.com/releases/v5.4.2/js/v4-shims.js',
[],
['integrity' => 'sha384-kW+oWsYx3YpxvjtZjFXqazFpA7UP/MbiY4jvs+RWZo2+N94PFZ36T6TFkc9O3qoB', 'crossorigin' => 'anonymous', 'defer' => 'defer']
['integrity' => 'sha384-GqVMZRt5Gn7tB9D9q7ONtcp4gtHIUEW/yG7h98J7IpE3kpi+srfFyyB/04OV6pG0', 'crossorigin' => 'anonymous', 'defer' => 'defer']
);
JHtml::script('https://use.fontawesome.com/releases/v5.5.0/js/v4-shims.js');
}
}

Expand Down

0 comments on commit cf01348

Please sign in to comment.