pc.js 293 B

123456789
  1. ;(function(){
  2. if(window.innerWidth < 768){
  3. return;
  4. }
  5. var tpl = document.querySelector("#tpl-adapt-pc").innerHTML || '';
  6. tpl = tpl.replace('helang-mobile-href',window.location.href);
  7. document.querySelector("uni-adapt-pc").innerHTML = tpl;
  8. document.body.setAttribute("adapt","pc");
  9. })();