Skip to content

Commit

Permalink
Task #172689 fix: Allow js to override (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
komalm authored Jun 24, 2021
1 parent 76099dc commit 1af597e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tjreports/site/views/reports/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ protected function addDocumentHeaderData()
HTMLHelper::stylesheet(Uri::root() . '/media/techjoomla_strapper/bs3/css/bootstrap.min.css');
}

HTMLHelper::_('script', 'components/com_tjreports/assets/js/tjrContentService.min.js');
HTMLHelper::_('script', 'components/com_tjreports/assets/js/tjrContentUI.min.js');
HTMLHelper::_('script', 'components/com_tjreports/assets/js/tjrContentService.min.js', array("relative" => true));
HTMLHelper::_('script', 'components/com_tjreports/assets/js/tjrContentUI.min.js', array("relative" => true));
HTMLHelper::_('stylesheet', 'components/com_tjreports/assets/css/tjreports.min.css');

$document->addScriptDeclaration('tjrContentUI.base_url = "' . Uri::base() . '"');
Expand Down

0 comments on commit 1af597e

Please sign in to comment.