-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support to glimmer-wrapper for MU namespaces
resolver.resolve can accept a namespace denoted by a double colon in the first argument, for example: - `service:other-namespace::i18n` - `template:components/other-namespace::my-component` For example for: ``` {{ember-power-select::option}} ``` The lookup should be: ``` resolver.resolve('template:component/ember-power-select::option’) `` And for a service example: ``` Ember.service.inject('auth-addon::main-service') ``` The lookup would be: ``` resolver.resolve('service:auth-addon::main-service’) ``` Refs: #214 Refs: emberjs/ember.js#15350 (comment)
- Loading branch information
Showing
2 changed files
with
18 additions
and
24 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
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