We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b7f2f commit a373ddfCopy full SHA for a373ddf
src/lib/core/overlay/scroll/scroll-dispatcher.ts
@@ -16,8 +16,6 @@ export const DEFAULT_AUDIT_TIME = 20;
16
*/
17
@Injectable()
18
export class ScrollDispatcher {
19
- events = 0;
20
-
21
/** Subject for notifying that a registered scrollable reference element has been scrolled. */
22
_scrolled: Subject<void> = new Subject<void>();
23
@@ -90,7 +88,6 @@ export class ScrollDispatcher {
90
88
91
89
/** Sends a notification that a scroll event has been fired. */
92
_notify() {
93
- this.events++;
94
this._scrolled.next();
95
}
96
0 commit comments