Преглед изворни кода

Docs: Ensure URLs without .html are properly redirected.

Mugen87 пре 4 година
родитељ
комит
c987adac58
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      docs/page.js

+ 3 - 1
docs/page.js

@@ -17,7 +17,9 @@ if ( ! window.frameElement && window.location.protocol !== 'file:' ) {
 
 	}
 
-	const pathSnippet = href.slice( splitIndex, - 5 );
+	const extension = href.split( '.' ).pop();
+	const end = ( extension === 'html' ) ? - 5 : href.length;
+	const pathSnippet = href.slice( splitIndex, end );
 
 	window.location.replace( docsBaseURL + '#' + pathSnippet + hash );