From 03de45dadd27ce67754ffcf1c49bd7f1c12f2232 Mon Sep 17 00:00:00 2001 From: Braad Date: Fri, 22 May 2015 12:41:35 -0700 Subject: [PATCH] Switch to using var to avoid hitting the DOM --- includes/js/theme-jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/js/theme-jquery.js b/includes/js/theme-jquery.js index 488da5e..36b190b 100755 --- a/includes/js/theme-jquery.js +++ b/includes/js/theme-jquery.js @@ -61,7 +61,7 @@ jQuery( document ).ready( function( $ ) { } // Allow the use of custom text when using the 'big-button' mobile nav style. - if ( $target.is( 'nav' ) && $( 'body' ).hasClass( 'big-button-nav-toggle' ) ) { + if ( $target.is( 'nav' ) && $body.hasClass( 'big-button-nav-toggle' ) ) { navText = trestle_vars['mobile_nav_text']; } else { navText = 'Toggle';