From ec5fb63a0b557474844f458065e5b26a22667e4e Mon Sep 17 00:00:00 2001 From: "Mr.doob" Date: Tue, 20 Jul 2021 21:15:53 +0100 Subject: [PATCH] Docs: *BufferGeometry redirect code clean up. --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index c768dacefd..bb233b1704 100644 --- a/docs/index.html +++ b/docs/index.html @@ -68,7 +68,7 @@ // *BufferGeometry to *Geometry - if ( window.location.hash.includes( 'Instanced' ) === false && /([\w]+)BufferGeometry$/.exec( window.location.hash ) ) { + if ( /Instanced/.exec( window.location.hash ) !== null && /([\w]+)BufferGeometry$/.exec( window.location.hash ) ) { window.location.hash = window.location.hash.replace( 'BufferGeometry', 'Geometry' ); -- GitLab