Please read the Feature Flag Guide for a detailed explanation.
-
ember-libraries-isregistered
Add
isRegistered
toEmber.libraries
. This convenience method checks whether a library is registered with Ember or not. -
ember-routing-routable-components
Implements RFC emberjs/rfcs#38, adding support for routable components.
-
ember-metal-ember-assign
Add
Ember.assign
that is polyfill forObject.assign
. -
ember-htmlbars-local-lookup
Provides the ability for component lookup to be relative to the source template.
When the proper API's are implemented by the resolver in use this feature allows
{{x-foo}}
in a given routes template (say thepost
route) to lookup a component nested underpost
. -
ember-test-helpers-fire-native-events
Makes ember test helpers (
fillIn
,click
,triggerEvent
...) fire native javascript events instead ofjQuery.Event
s, maching more closely app's real usage.