Twenty Thirteen: JS fix, after r24511 changes -- add missing semicolon to end variable definition. See #24643.
git-svn-id: http://core.svn.wordpress.org/trunk@24514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a0172203fc
commit
a0d63de4f8
|
@ -218,7 +218,7 @@ function twentythirteen_scripts_styles() {
|
|||
wp_enqueue_script( 'jquery-masonry' );
|
||||
|
||||
// Loads JavaScript file with functionality specific to Twenty Thirteen.
|
||||
wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20130625', true );
|
||||
wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20130625a', true );
|
||||
|
||||
// Loads our main stylesheet.
|
||||
wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri() );
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
( function( $ ) {
|
||||
var body = $( 'body' ),
|
||||
_window = $( window ),
|
||||
_window = $( window );
|
||||
|
||||
/**
|
||||
* Adds a top margin to the footer if the sidebar widget area is higher
|
||||
|
|
Loading…
Reference in New Issue