-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Remove
getResolveValue
and getResolvable
methods…
… from `Transition` in favor of `injector().get()` and `injector().getAsync()` In beta.3, the Transition APIs: `injector()`, `getResolvable`, and `getResolveValue` duplicated functionality. Instead of: ```js trans.getResolveValue('myResolve'); ``` use: ```js trans.injector().get('myResolve') ``` --- Instead of: ```js trans.getResolvable('myResolve').get(); ``` use: ```js trans.injector().getAsync('myResolve') ```
- Loading branch information
1 parent
0162212
commit 111d259
Showing
1 changed file
with
20 additions
and
52 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