From 9a0c87e5c01ab220daf3030794356bf89a277e3a Mon Sep 17 00:00:00 2001
From: jojohoch <joachim.hoch@iqb.hu-berlin.de>
Date: Mon, 7 Mar 2022 16:16:32 +0100
Subject: [PATCH] [player] Rename selector of IntersectionDetectionDirective

---
 projects/player/src/app/components/page/page.component.html   | 4 ++--
 .../src/app/directives/intersection-detection.directive.ts    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/projects/player/src/app/components/page/page.component.html b/projects/player/src/app/components/page/page.component.html
index 72db6f562..599d0c2f2 100644
--- a/projects/player/src/app/components/page/page.component.html
+++ b/projects/player/src/app/components/page/page.component.html
@@ -1,4 +1,4 @@
-<div appIntersectionDetection
+<div aspectIntersectionDetection
      detectionType="top"
      [intersectionContainer]="pagesContainer"
      (intersecting)="onIntersection()">
@@ -12,7 +12,7 @@
       [section]="section">
   </aspect-section>
 </div>
-<div appIntersectionDetection
+<div aspectIntersectionDetection
      detectionType="bottom"
      [intersectionContainer]="pagesContainer"
      (intersecting)="onIntersection()"
diff --git a/projects/player/src/app/directives/intersection-detection.directive.ts b/projects/player/src/app/directives/intersection-detection.directive.ts
index a4f4028c2..4a033c76f 100644
--- a/projects/player/src/app/directives/intersection-detection.directive.ts
+++ b/projects/player/src/app/directives/intersection-detection.directive.ts
@@ -4,7 +4,7 @@ import {
 import { IntersectionDetector } from '../classes/intersection-detector';
 
 @Directive({
-  selector: '[appIntersectionDetection]'
+  selector: '[aspectIntersectionDetection]'
 })
 export class IntersectionDetectionDirective implements OnInit, OnDestroy {
   @Input() detectionType!: 'top' | 'bottom';
-- 
GitLab