Skip to content

Instantly share code, notes, and snippets.

@yahasa
yahasa / app.component.ts
Last active April 9, 2019 08:53
Keep scroll positions for routes in Angular app
import { Component, OnInit, OnDestroy } from '@angular/core';
import { Router, NavigationStart, NavigationEnd } from '@angular/router';
import { Subscription } from 'rxjs';
import 'rxjs/add/operator/pairwise';
@Component({
selector: 'app-root',
template: `/* ... your template */`,
styles: [`/* ... your styles */`]
})