diff --git a/src/components/navigation/navigation.ts b/src/components/navigation/navigation.ts index 1aad635..ac70fc4 100644 --- a/src/components/navigation/navigation.ts +++ b/src/components/navigation/navigation.ts @@ -63,9 +63,6 @@ export default class Navigation extends Vue { // Update active index this.updateIndex(index); - - // Debug output TODO: Remove this - console.log(`onNavigate: Previous: ${this.activeIndex}, New: ${index}`); } /** @@ -82,6 +79,9 @@ export default class Navigation extends Vue // Record or not if (history != null && !history) return; + // Debug output TODO: Remove this + console.log(`onNavigate: Previous: ${this.activeIndex}, New: ${newIndex}`); + // Check url let url = `/${newIndex}`;