9b92ab4963610cbc37aae7e435206b3152a9ad0f
[sdc/sdc-workflow-designer.git] /
1 /**
2  * @license
3  * Copyright Google Inc. All Rights Reserved.
4  *
5  * Use of this source code is governed by an MIT-style license that can be
6  * found in the LICENSE file at https://angular.io/license
7  */
8
9 import {ScrollStrategy} from './scroll-strategy';
10
11 /**
12  * Scroll strategy that doesn't do anything.
13  */
14 export class NoopScrollStrategy implements ScrollStrategy {
15   enable() {
16     //
17   }
18   disable() {
19     //
20   }
21   attach() {
22     //
23   }
24 }