From 0e04127bffcf43d84772b59efbfc7e6b1d8c39c8 Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Mon, 19 Jul 2021 17:12:28 +0200 Subject: [PATCH] Docs: Fix redirect for geometry generators. (#22153) --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 0cf2d60bcb..450f769795 100644 --- a/docs/index.html +++ b/docs/index.html @@ -68,7 +68,7 @@ // *BufferGeometry to *Geometry - if ( /([\w]+)BufferGeometry$/.exec( window.location.hash ) ) { + if ( /^(?!.*(Instanced)).*BufferGeometry/.exec( window.location.hash ) ) { window.location.hash = window.location.hash.replace( 'BufferGeometry', 'Geometry' ); -- GitLab