dont try to prevent event where none exists

This commit is contained in:
Rich Harris
2017-12-15 18:26:55 -05:00
parent a3d44aba31
commit 67fe570f6d

View File

@@ -77,7 +77,6 @@ const app = {
scroll_history[cid] = { x: 0, y: 0 }; scroll_history[cid] = { x: 0, y: 0 };
history.pushState({ id }, '', url.href); history.pushState({ id }, '', url.href);
event.preventDefault();
} }
selected.route.load().then(mod => { selected.route.load().then(mod => {
@@ -121,7 +120,9 @@ const app = {
const scroll = scroll_state(); const scroll = scroll_state();
navigate(new URL(a.href), null); if (navigate(new URL(a.href), null)) {
event.preventDefault();
}
}); });
function preload(event) { function preload(event) {