-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>WASM Serial Terminal</title> | ||
<!-- If the user has put in extra junk on the URL, clear it and redirect users to the app page. For github pages only. --> | ||
<script type="text/javascript"> | ||
window.location = window.location.split("/").slice(0, 4); | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>WASM Serial Terminal</title> | ||
<!-- If the user has put extra junk on the URL, clear it and redirect them to the app page. For github pages first request. --> | ||
<!-- Redirects are also handled by App.razor if 404.html isn't reached --> | ||
<script type="text/javascript"> | ||
window.location = window.location.toString().split("/").slice(0, 4).join("/"); | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |