We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5c9781 commit ea8ab36Copy full SHA for ea8ab36
src/sandbox/url-listeners.js
@@ -30,7 +30,6 @@ export default function setupHistoryListeners() {
30
if (!isStandalone) {
31
Object.assign(window.history, {
32
go(delta) {
33
- console.log(`go(${delta})`);
34
const newPos = historyPosition + delta;
35
if (newPos >= 0 && newPos <= historyList.length - 1) {
36
historyPosition = newPos;
@@ -50,12 +49,10 @@ export default function setupHistoryListeners() {
50
49
},
51
52
back() {
53
- console.log('back()');
54
window.history.go(-1);
55
56
57
forward() {
58
- console.log('forward()');
59
window.history.go(1);
60
61
0 commit comments