Hi there,
I checked our bug list and this is already added, for the meantime, please add this code to
jQuery( function($) {
$(document).on('click','.x-menu-collapsed .x-anchor-sub-indicator', function() {
//We can use stop propagation here, but that also prevents the sub-menu toggle effect
$(this).parent().parent().data('link', false);//so let's do it this way
} );
$(document).on('click', '.x-menu-collapsed a.x-anchor-menu-item', function(){
if ( $(this).data('link') !== true ) { //Don't link when the arrow down icon is clicked
$(this).data('link', true);
return false;
}
var url = $(this).attr('href');
if ( url.split('//').length == 2 ) {
// the length will be always two if https://, http://, or just // is present
window.location = url;
}
} );
} );
And since the icon is too small, it will be harder to TAP it, please add this CSS to your global custom CSS as well.
.x-menu-collapsed .x-anchor-sub-indicator {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 85px;
padding: 20px 0px;
}
Hope this helps.