Ecoji webapp: Handle decode URIs with # instead of ?

This commit is contained in:
octospacc 2022-09-06 16:31:20 +02:00
parent 230cc8d868
commit 54d41e9c07
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
| https://github.com/keith-turner/ecoji | https://github.com/keith-turner/ecoji
Changes in this Web build: Changes in this Web build:
| Simpler CSS, and making the app a standalone AHTML bundle. | Simpler CSS, handle decode URIs with #, made the app a standalone AHTML bundle.
--> -->
<html lang="en"> <html lang="en">
<head> <head>
@ -688,6 +688,6 @@ function doLinkCopy(){
The app is self-contained - you can simply "Save Page As" to get an offline copy. The app is self-contained - you can simply "Save Page As" to get an offline copy.
</p></footer> </p></footer>
</div> </div>
<script>ecojiPromise.then(() => {doPopulate(new URLSearchParams(window.location.search).get("d"))})</script> <script>ecojiPromise.then(() => {doPopulate(new URLSearchParams(window.location.hash).get("#d"))})</script>
</body> </body>
</html> </html>