diff options
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){ |