Skip to content

Instantly share code, notes, and snippets.

@FinalDestiny
Created December 21, 2017 11:49
Show Gist options
  • Save FinalDestiny/98380694ca6a75dfc3f535ca55682ac8 to your computer and use it in GitHub Desktop.
Save FinalDestiny/98380694ca6a75dfc3f535ca55682ac8 to your computer and use it in GitHub Desktop.
// adding arrows for the slide/fullscreen menus
if ( $( '.et_slide_in_menu_container' ).length ) {
var $item_with_sub = $( '.et_slide_in_menu_container' ).find( '.menu-item-has-children > a' );
// add arrows for each menu item which has submenu
if ( $item_with_sub.length ) {
$item_with_sub.append( '<span class="et_mobile_menu_arrow"></span>' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment