mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-06-12 11:54:02 +00:00
mobile: hide initial menu animation in landscape #210
This commit is contained in:
parent
30bf0250e4
commit
bc018cbb0d
4 changed files with 8 additions and 5 deletions
static/js
|
@ -1,6 +1,9 @@
|
|||
var isIE = /*@cc_on!@*/false || !!document.documentMode;
|
||||
if( !isIE ){
|
||||
if( isIE ){
|
||||
// we don't support sidebar flyout in IE
|
||||
document.querySelector( 'body' ).classList.remove( 'mobile-support' );
|
||||
}
|
||||
else{
|
||||
document.querySelector( 'body' ).classList.add( 'mobile-support' );
|
||||
}
|
||||
var touchsupport = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue