Skip to main content

Timeline for How to go back last page

Current License: CC BY-SA 3.0

3 events
when toggle format what by license comment
Apr 12, 2018 at 8:59 comment added JavierFuentes Thank you @bmd , it's a more elaborate way but it works too. Another working solution is don't use herf: <a (click)="goBack()"> although this way don't pass HTML Validators.
Apr 10, 2018 at 10:22 comment added bmd I would suggest creating a 'clickPreventDefault' directive rather than using javascript:void(0). Something like... @Directive({ selector: '[clickPreventDefault]' }) export class ClickPreventDefaultDirective { @HostListener("click", ["$event"]) onClick($event: Event) { $event.preventDefault(); } }
Apr 1, 2018 at 9:46 history answered JavierFuentes CC BY-SA 3.0