Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. //on lines 105 & 106, change:
  2.  
  3. this.list = this.element.find( "ol,ul" ).eq( 0 );
  4. this.lis = $( " > li:has(a[href])", this.list );
  5.  
  6. // to:
  7.  
  8. this.list = this.element.find( "nav" ).eq( 0 );
  9. this.lis = $( " > span:has(a[href])", this.list );
  10.  
  11. // AND! /!\ Change all instances of "li" to "span"
Add Comment
Please, Sign In to add comment