Skip to content

Commit ea8ab36

Browse files
author
Ives van Hoorne
committed
Remove console statements
1 parent a5c9781 commit ea8ab36

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/sandbox/url-listeners.js

-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export default function setupHistoryListeners() {
3030
if (!isStandalone) {
3131
Object.assign(window.history, {
3232
go(delta) {
33-
console.log(`go(${delta})`);
3433
const newPos = historyPosition + delta;
3534
if (newPos >= 0 && newPos <= historyList.length - 1) {
3635
historyPosition = newPos;
@@ -50,12 +49,10 @@ export default function setupHistoryListeners() {
5049
},
5150

5251
back() {
53-
console.log('back()');
5452
window.history.go(-1);
5553
},
5654

5755
forward() {
58-
console.log('forward()');
5956
window.history.go(1);
6057
},
6158

0 commit comments

Comments
 (0)