Guest User

Untitled

a guest
Dec 9th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. jQuery(document).ready(function($) {
  2. // load touchdown resposnive nav
  3. $('#site-navigation .menu').Touchdown();
  4.  
  5. // check window size
  6. if (matchMedia) {
  7. var mq = window.matchMedia("(min-width: 769px)");
  8. mq.addListener(WidthChange);
  9. WidthChange(mq);
  10. }
  11. // load or hide horizontalNav depending on window width
  12. function WidthChange(mq) {
  13. if (mq.matches) {
  14.  
  15. $('#site-navigation .menu').horizontalNav({});
  16. }
  17. else {
  18. $('#site-navigation .menu').hide();
  19. }
  20. }(window.jQuery)
  21. });
Add Comment
Please, Sign In to add comment