improved navigation selection and fixed mobile nav select

This commit is contained in:
Brandon Mathis 2011-07-21 15:32:10 -04:00
parent 16b03308bd
commit b4584bd01c
3 changed files with 4 additions and 4 deletions

View file

@ -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&hellip;</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+'">&bull; '+link.text+'</option>')
});
mobileNav.children('select').bind('change', function(event){