Skip to content

Commit

Permalink
Untracked: Fix typo in url (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlang42 authored Jan 29, 2024
1 parent 7f26bcd commit f8c500e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<link rel="icon" type="image/x-icon" href="images/favicon.ico"/>
<iframe id="full_frame" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;"></iframe>
<script>
const EXTERNAL_URL = "https://taskban.davidlang.net/";
const EXTERNAL_URL = "https://taskban.davidlang.net/"; // also in Main.js
const APPS_SCRIPT_URL = "https://script.google.com/macros/s/AKfycbxSDJouDbOKVTQ3cnnGaJaLW5EbR86YRTwCX-PJb7Mvua9egDM/exec";
const TITLE_SUFFIX = " :: TaskBan"; // also in Main.js
window.top.addEventListener('message', function(message) {
window.history.replaceState({}, null, EXTERNAL_URL + "?" + message.data);
window.history.replaceState({}, null, EXTERNAL_URL + "app.html?" + message.data);
});
document.getElementById('full_frame').src = APPS_SCRIPT_URL + window.location.search;
const p = new URLSearchParams(window.location.search);
Expand Down

0 comments on commit f8c500e

Please sign in to comment.