#5 Mistaken relative file location for JS and CSS assets
Opened 3 years ago by t0xic0der. Modified 3 years ago

Here's an excerpt from template.html from L#29 to L#32.

<link rel="stylesheet" type="text/css" href="jquery-ui-1.8.17.custom.css" />
<script type="text/javascript" src="jquery-1.7.1.min.js" ></script>
<script type="text/javascript" src="jquery.ui.widget.js" ></script>
<script type="text/javascript" src="jquery.ui.tabs.js" ></script>

In such a state when the gather_easyfix.py is run from the development code, the tab collection are not loaded the way they should be and appear as simple links.

The lines should be corrected as the following to ensure correct appearance and working for the loaded JQuery JS and CSS assets.

<link rel="stylesheet" type="text/css" href="css/jquery-ui-1.8.17.custom.css" />
<script type="text/javascript" src="js/jquery-1.7.1.min.js" ></script>
<script type="text/javascript" src="js/jquery.ui.widget.js" ></script>
<script type="text/javascript" src="js/jquery.ui.tabs.js" ></script>

Login to comment on this ticket.

Metadata