Skip to content

Commit

Permalink
FIX: Page to page navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
OyvindMathisen committed Jan 24, 2024
1 parent 99e7bf2 commit 9568504
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</head>
<body>
<div id="nav-bar">
<button type="button" class="nav-button" onclick="window.location.assign('/index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('/seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('/iframe.html')">IFrame Tester</button>
<button type="button" class="nav-button" onclick="window.location.assign('./index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('./seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('./iframe.html')">IFrame Tester</button>
</div>
<div>
<script src="iframe-app.js" type="text/javascript"></script>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</head>
<body>
<div id="nav-bar">
<button type="button" class="nav-button" onclick="window.location.assign('/index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('/seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('/iframe.html')">IFrame Tester</button>
<button type="button" class="nav-button" onclick="window.location.assign('./index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('./seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('./iframe.html')">IFrame Tester</button>
</div>
</body>
</html>
6 changes: 3 additions & 3 deletions seamless.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</head>
<body>
<div id="nav-bar">
<button type="button" class="nav-button" onclick="window.location.assign('/index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('/seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('/iframe.html')">IFrame Tester</button>
<button type="button" class="nav-button" onclick="window.location.assign('./index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('./seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('./iframe.html')">IFrame Tester</button>
</div>
<script src="app.js" type="text/javascript"></script>
<input id="script-input" type="text">
Expand Down

0 comments on commit 9568504

Please sign in to comment.