We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0b961 commit 0bcae68Copy full SHA for 0bcae68
app.html
@@ -212,12 +212,8 @@
212
method: 'code',
213
code: root.outerHTML
214
.replace(
215
- '<xr-iframe src="examples\/floor.html"',
216
- `<xr-iframe src="${window.location.origin}/examples/floor.html"`
217
- )
218
- .replace(
219
- '<xr-iframe src="examples\/tutorial.html"',
220
- `<xr-iframe src="${window.location.origin}/examples/tutorial.html"`
+ /(<xr-iframe src=")(examples\/)/g,
+ `$1${window.location.origin}/$2`
221
),
222
});
223
break;
0 commit comments