Add files via upload
diff --git a/js/search-bar.js b/js/search-bar.js
index a52ee65..e5c8846 100644
--- a/js/search-bar.js
+++ b/js/search-bar.js
@@ -1,15 +1,18 @@
-function altSearchBar() {
-	if (document.querySelector(".md-google-search__metacontainer").style.display == "none") {
-		document.querySelector(".md-google-search__metacontainer").style.display = "block";
-		document.querySelector("#search i").innerText = "fullscreen";
-	} else {
-		document.querySelector(".md-google-search__metacontainer").style.display = "none";
-		document.querySelector(".autocomplete-container").style.display = "none";
-		document.querySelector("#search i").innerText = "search";
-	}
-}
-
-function initSearchBar() {
-	document.querySelector("#search").addEventListener("click", altSearchBar);
-	if (window.innerWidth > 700) altSearchBar();
-}
+// *********** HERE STARTS search-bar.js *************

+

+

+function altSearchBar() {

+	if (document.querySelector(".md-google-search__metacontainer").style.display == "none") {

+		document.querySelector(".md-google-search__metacontainer").style.display = "block";

+		document.querySelector("#search i").innerText = "fullscreen";

+	} else {

+		document.querySelector(".md-google-search__metacontainer").style.display = "none";

+		document.querySelector(".autocomplete-container").style.display = "none";

+		document.querySelector("#search i").innerText = "search";

+	}

+}

+

+function initSearchBar() {

+	document.querySelector("#search").addEventListener("click", altSearchBar);

+	if (window.innerWidth > 700) altSearchBar();

+}