diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-21 15:32:10 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-24 17:22:33 -0400 |
commit | b4584bd01cce557d98c8cb738da0a87e2d8dd0c5 (patch) | |
tree | 2cfc5b8397f1e16869addb44860511d5dd0bec7c /.themes/classic/source/javascripts | |
parent | 16b03308bdc08cc7fd7b52a6e1dc19338bff412a (diff) | |
download | my_new_personal_website-b4584bd01cce557d98c8cb738da0a87e2d8dd0c5.tar.xz my_new_personal_website-b4584bd01cce557d98c8cb738da0a87e2d8dd0c5.zip |
improved navigation selection and fixed mobile nav select
Diffstat (limited to '.themes/classic/source/javascripts')
-rw-r--r-- | .themes/classic/source/javascripts/octopress.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.themes/classic/source/javascripts/octopress.js b/.themes/classic/source/javascripts/octopress.js index bdc47683..12ca23ea 100644 --- a/.themes/classic/source/javascripts/octopress.js +++ b/.themes/classic/source/javascripts/octopress.js @@ -1,7 +1,7 @@ function getNav(){ - var mobileNav = $('body > nav fieldset[role=site-search]').after('<fieldset role="mobile-nav"></fieldset>').next().append('<select></select>'); + var mobileNav = $('nav[role=navigation] fieldset[role=site-search]').after('<fieldset role="mobile-nav"></fieldset>').next().append('<select></select>'); mobileNav.children('select').append('<option value="">Navigate…</option>'); - $($('body > nav ul[role=main-nav] a')).each(function(link) { + $($('ul[role=main-navigation] a')).each(function(link) { mobileNav.children('select').append('<option value="'+link.href+'">• '+link.text+'</option>') }); mobileNav.children('select').bind('change', function(event){ |