|
|
Line 1: |
Line 1: |
| /*Forces responsive content*/
| | alert("a"); |
| function mobilefix(){
| |
| var m = document.querySelector('meta[name="viewport"]');
| |
| m.content = "width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.25, maximum-scale=5.0";
| |
| };
| |
| window.addEventListener("load", mobilefix());
| |
| | |
| /*Restores search on narrow screens by moving it above navigation*/
| |
| function searchfix(){
| |
| var s = document.querySelector("#p-search");
| |
| var p = document.querySelector("#right-navigation");
| |
| var a = document.querySelector("div.vector-menu-content");
| |
| if(window.innerWidth <= 700){
| |
| a.prepend(s);
| |
| }else if(window.innerWidth > 700){
| |
| p.append(s);
| |
| };
| |
| };
| |
| searchfix();
| |
| window.addEventListener("resize", searchfix());
| |