()
| 909 | } |
| 910 | |
| 911 | protected _attach() { |
| 912 | let priority = 0 |
| 913 | |
| 914 | const { to } = this.animation |
| 915 | if (hasFluidValue(to)) { |
| 916 | addFluidObserver(to, this) |
| 917 | if (isFrameValue(to)) { |
| 918 | priority = to.priority + 1 |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | this.priority = priority |
| 923 | } |
| 924 | |
| 925 | protected _detach() { |
| 926 | const { to } = this.animation |
no test coverage detected