Unverified Commit 6837d02f authored by Trent Hare's avatar Trent Hare Committed by GitHub
Browse files

Update index.html for paths to .js and .css

Just updated paths from index.html to code and css
parent 5ac161c5
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -9,19 +9,19 @@
			  crossorigin="anonymous">
	</script>
	<!-- Declares the stylesheet for the page.-->
	<link rel="stylesheet" href="planetarynames.css">
	<script src="./render.js"></script>
	<link rel="stylesheet" href="./css/planetarynames.css">
	<script src="./js/render.js"></script>
	<!-- Declares id of input field which will be used for the autcomplete.-->
	<input id="autoComplete" tabindex="1" onfocusout="unrenderBox()" onfocusin="renderBox()"></input>  <!-- Default "id" value = "autoComplete"> -->
	<body>
	<!-- Gets the other autocomplete file library for use (Doesn't look like I need this, keeping it for now just in case).
	<script src="./autoComplete.js/dist/js/autoComplete.min.js"></script> -->
	<!-- Gets require.js for use in autcomplete.-->
	<script src="./require.js"></script>
	<script src="./js/require.js"></script>
	<!-- Gets the current server-->
	<script src="./getServer.js"></script>
	<script src="./js/getServer.js"></script>
	<!-- Declares main js file for autocomplete functionality.-->
	<script src="./customIndex.js"></script>
	<script src="./js/customIndex.js"></script>

</body>