1
0
Эх сурвалжийг харах

Docs/Examples: Open panel on mobile when no page/example is selected.

Mr.doob 5 сар өмнө
parent
commit
1e2b377e54
2 өөрчлөгдсөн 12 нэмэгдсэн , 0 устгасан
  1. 6 0
      docs/index.html
  2. 6 0
      examples/index.html

+ 6 - 0
docs/index.html

@@ -1911,6 +1911,12 @@
 
 			const selectedPage = window.location.hash.substring( 1 );
 
+			if ( selectedPage === '' ) {
+
+				panel.classList.add( 'open' );
+
+			}
+
 			const links = navigation.querySelectorAll( 'a' );
 
 			links.forEach( link => {

+ 6 - 0
examples/index.html

@@ -118,6 +118,12 @@
 
 			}
 
+			if ( selected === null ) {
+
+				panel.classList.add( 'open' );
+
+			}
+
 			if ( viewer.src === '' ) {
 
 				viewer.srcdoc = document.getElementById( 'PlaceholderHTML' ).innerHTML;

粤ICP备19079148号