2013-02-19 00:08:56 +01:00
|
|
|
/**
|
|
|
|
* Functionality specific to Twenty Thirteen.
|
|
|
|
*
|
|
|
|
* Provides helper functions to enhance the theme experience.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function( $ ) {
|
2013-04-17 00:35:55 +02:00
|
|
|
var html = $( 'html' ),
|
|
|
|
body = $( 'body' ),
|
|
|
|
_window = $( window ),
|
2013-04-16 23:51:07 +02:00
|
|
|
adjustFooter,
|
2013-04-11 18:11:46 +02:00
|
|
|
|
2013-04-16 23:51:07 +02:00
|
|
|
/**
|
|
|
|
* Adds a top margin to the footer if the sidebar widget area is
|
|
|
|
* higher than the rest of the page, to help the footer always
|
|
|
|
* visually clear the sidebar.
|
|
|
|
*/
|
|
|
|
adjustFooter = function() {
|
|
|
|
var sidebar = $( '#secondary .widget-area' ),
|
|
|
|
secondary = ( 0 == sidebar.length ) ? -40 : sidebar.height(),
|
|
|
|
margin = $( '#tertiary .widget-area' ).height() - $( '#content' ).height() - secondary;
|
|
|
|
|
|
|
|
if ( margin > 0 && _window.innerWidth() > 999 )
|
|
|
|
$( '#colophon' ).css( 'margin-top', margin + 'px' );
|
|
|
|
};
|
|
|
|
|
2013-04-03 19:29:59 +02:00
|
|
|
$( function() {
|
2013-03-12 22:42:53 +01:00
|
|
|
if ( body.is( '.sidebar' ) )
|
2013-04-16 23:51:07 +02:00
|
|
|
adjustFooter();
|
2013-03-12 22:42:53 +01:00
|
|
|
} );
|
2013-02-19 00:08:56 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enables menu toggle for small screens.
|
|
|
|
*/
|
|
|
|
( function() {
|
|
|
|
var nav = $( '#site-navigation' ), button, menu;
|
|
|
|
if ( ! nav )
|
|
|
|
return;
|
|
|
|
|
|
|
|
button = nav.find( '.menu-toggle' );
|
|
|
|
menu = nav.find( '.nav-menu' );
|
|
|
|
if ( ! button )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Hide button if menu is missing or empty.
|
|
|
|
if ( ! menu || ! menu.children().length ) {
|
|
|
|
button.hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-16 23:51:07 +02:00
|
|
|
$( '.menu-toggle' ).on( 'click.twentythirteen', function() {
|
2013-02-19 00:08:56 +01:00
|
|
|
nav.toggleClass( 'toggled-on' );
|
|
|
|
} );
|
|
|
|
} )();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes "skip to content" link work correctly in IE9 and Chrome for better
|
|
|
|
* accessibility.
|
|
|
|
*
|
|
|
|
* @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
|
|
|
|
*/
|
2013-04-16 23:51:07 +02:00
|
|
|
_window.on( 'hashchange.twentythirteen', function() {
|
2013-04-23 18:30:03 +02:00
|
|
|
var element = document.getElementById( location.hash.substring( 1 ) );
|
2013-02-19 00:08:56 +01:00
|
|
|
|
|
|
|
if ( element ) {
|
2013-04-23 18:30:03 +02:00
|
|
|
if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) )
|
|
|
|
element.tabIndex = -1;
|
2013-02-19 00:08:56 +01:00
|
|
|
|
|
|
|
element.focus();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Arranges footer widgets vertically.
|
|
|
|
*/
|
|
|
|
if ( $.isFunction( $.fn.masonry ) ) {
|
2013-03-07 18:57:16 +01:00
|
|
|
var columnWidth = body.is( '.sidebar' ) ? 228 : 245;
|
2013-02-19 00:08:56 +01:00
|
|
|
|
2013-02-28 22:35:26 +01:00
|
|
|
$( '#secondary .widget-area' ).masonry( {
|
2013-02-19 00:08:56 +01:00
|
|
|
itemSelector: '.widget',
|
2013-03-07 18:57:16 +01:00
|
|
|
columnWidth: columnWidth,
|
|
|
|
gutterWidth: 20,
|
2013-03-07 19:22:58 +01:00
|
|
|
isRTL: body.is( '.rtl' )
|
2013-02-19 00:08:56 +01:00
|
|
|
} );
|
|
|
|
}
|
|
|
|
} )( jQuery );
|