blob: e5c88465cafe00f5ca47723261b33c4530f9d94a [file] [log] [blame]
Javier López-Contreras6d1d72d2018-12-27 23:17:18 +01001// *********** HERE STARTS search-bar.js *************
2
3
4function altSearchBar() {
5 if (document.querySelector(".md-google-search__metacontainer").style.display == "none") {
6 document.querySelector(".md-google-search__metacontainer").style.display = "block";
7 document.querySelector("#search i").innerText = "fullscreen";
8 } else {
9 document.querySelector(".md-google-search__metacontainer").style.display = "none";
10 document.querySelector(".autocomplete-container").style.display = "none";
11 document.querySelector("#search i").innerText = "search";
12 }
13}
14
15function initSearchBar() {
16 document.querySelector("#search").addEventListener("click", altSearchBar);
17 if (window.innerWidth > 700) altSearchBar();
18}