]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/twentytwelve/js/navigation.js
WordPress 3.9
[autoinstalls/wordpress.git] / wp-content / themes / twentytwelve / js / navigation.js
index 915e25a91de8e94f169ff17d7897a22eb180fa40..2c3214108e8d4ac5e5beb109be18081a73970a9e 100644 (file)
@@ -1,16 +1,18 @@
 /**
- * navigation.js
- *
- * Handles toggling the navigation menu for small screens.
+ * Handles toggling the navigation menu for small screens and
+ * accessibility for submenu items.
  */
 ( function() {
        var nav = document.getElementById( 'site-navigation' ), button, menu;
-       if ( ! nav )
+       if ( ! nav ) {
                return;
+       }
+
        button = nav.getElementsByTagName( 'h3' )[0];
        menu   = nav.getElementsByTagName( 'ul' )[0];
-       if ( ! button )
+       if ( ! button ) {
                return;
+       }
 
        // Hide button if menu is missing or empty.
        if ( ! menu || ! menu.childNodes.length ) {
        }
 
        button.onclick = function() {
-               if ( -1 == menu.className.indexOf( 'nav-menu' ) )
+               if ( -1 === menu.className.indexOf( 'nav-menu' ) ) {
                        menu.className = 'nav-menu';
+               }
 
-               if ( -1 != button.className.indexOf( 'toggled-on' ) ) {
+               if ( -1 !== button.className.indexOf( 'toggled-on' ) ) {
                        button.className = button.className.replace( ' toggled-on', '' );
                        menu.className = menu.className.replace( ' toggled-on', '' );
                } else {
                        menu.className += ' toggled-on';
                }
        };
-} )();
\ No newline at end of file
+} )();
+
+// Better focus for hidden submenu items for accessibility.
+( function( $ ) {
+       $( '.main-navigation' ).find( 'a' ).on( 'focus.twentytwelve blur.twentytwelve', function() {
+               $( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' );
+       } );
+} )( jQuery );