Fix sidebar closing on iOS

this follows this fix [1]

[1] https://stackoverflow.com/questions/11397028/document-click-function-for-touch-device

Bug: T161470
Change-Id: I20e6a0e18a239131b94e4ab949b7784f241e4d40
isekai
Paladox 7 years ago
parent d745bb22f9
commit 5a0ed3efe1

@ -33,7 +33,7 @@ $( function () {
} );
// Close menus on click outside
$( document ).click( function ( e ) {
$( document ).on( 'click touchstart', function ( e ) {
if ( $( e.target ).closest( '#menus-cover' ).length > 0 ) {
$( '#personal-inner' ).fadeOut( toggleTime );
$( '.sidebar-inner' ).fadeOut( toggleTime );

Loading…
Cancel
Save