-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
color rotation works....ummm..better
- Loading branch information
1 parent
8698cba
commit 221542d
Showing
2 changed files
with
61 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
import { Injectable } from "@angular/core"; | ||
import { Subject } from "rxjs"; | ||
|
||
@Injectable({ | ||
providedIn: 'root' | ||
}) | ||
|
||
export class WindowAnimationService{} | ||
export class WindowAnimationService{ | ||
hideWindowNotify: Subject<void> = new Subject<void>(); | ||
restoreWindowNotify: Subject<void> = new Subject<void>(); | ||
mimizeWindowNotify: Subject<void> = new Subject<void>(); | ||
maximizeNotify: Subject<void> = new Subject<void>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters