Skip to content
This repository was archived by the owner on Oct 27, 2021. It is now read-only.

Commit ed9c262

Browse files
place the includes in order they execute
1 parent 9dc2a84 commit ed9c262

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

index.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<html>
22
<head>
33
<title>Simple YouTube Channel Search Engine</title>
4-
<script src="auth.js"></script>
5-
<script src="script.js"></script>
64
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
5+
<script src="auth.js"></script>
6+
<script async src="script.js"></script>
7+
78
</head>
89
<body>
910
<section id="display" align="center">
1011
<input id="searchBar" value="Developers@Work"/>
1112
<button type="submit" onClick="buttonClicked()">Submit</button>
1213
</section>
1314
</body>
14-
</html>
15+
</html>

0 commit comments

Comments
 (0)