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 9239b80 commit 86f538eCopy full SHA for 86f538e
examples/buddybook/index.html
@@ -32,6 +32,14 @@
32
}
33
}(window.location))
34
</script>
35
+ <script type="text/javascript">
36
+ (function() {
37
+ const path = window.location.pathname.substring('/buddybook/'.length);
38
+ if (path && !window.location.search.includes('?/')) {
39
+ window.location.replace('/buddybook/?/' + path + window.location.search + window.location.hash);
40
+ }
41
+ })();
42
+ </script>
43
</head>
44
<body>
45
<div id="root"></div>
0 commit comments