Guest User

Untitled

a guest
May 23rd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import { installRouter } from '../node_modules/pwa-helpers/router.js';
  2.  
  3. installRouter(
  4.  
  5. location => {
  6. const pages = document.getElementById("main").children
  7. for( let i=0; i< pages.length; i++){
  8.  
  9. if("/" + pages[i].localName == location.pathname){
  10. pages[i].setAttribute("active",true)
  11. }else{
  12. pages[i].removeAttribute("active")
  13. }
  14. }
  15. }
  16.  
  17. );
Add Comment
Please, Sign In to add comment