@wizishop/angular-components 14.4.61 → 14.4.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/services/history.service.mjs +1 -4
- package/fesm2015/wizishop-angular-components.mjs +0 -3
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +0 -3
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-14.4.62.tgz +0 -0
- package/wizishop-angular-components-14.4.61.tgz +0 -0
|
@@ -2579,16 +2579,13 @@ class HistoryService {
|
|
|
2579
2579
|
return;
|
|
2580
2580
|
}
|
|
2581
2581
|
this.history.push(event.url.split('?')[0]);
|
|
2582
|
-
console.log('history', this.history);
|
|
2583
2582
|
}
|
|
2584
2583
|
});
|
|
2585
2584
|
}
|
|
2586
2585
|
back(link) {
|
|
2587
|
-
console.log('back', this.history);
|
|
2588
2586
|
this.history.pop();
|
|
2589
2587
|
if (this.history.length > 0) {
|
|
2590
2588
|
const lastlink = this.history[this.history.length - 1];
|
|
2591
|
-
console.log('lastlink', lastlink);
|
|
2592
2589
|
this.router.navigate(lastlink.split('/'));
|
|
2593
2590
|
}
|
|
2594
2591
|
else {
|