Untitled
3 years ago in Plain Text
// BehaviorSubject from rxjs
hovering$ = new BehaviorSubject<boolean>(false);
toggleOnHover() {
const currentHovering = this.hovering$.getValue();
this.hovering$.next(!currentHovering);
}