Unverified Commit 160de2ef authored by Kaitlyn Lee's avatar Kaitlyn Lee Committed by GitHub
Browse files

Merge pull request #110 from thareUSGS/master

Update index.html for paths to .js and .css files
parents 5ac161c5 6837d02f
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>