Registry#normalizeFullName()

normalizeFullName (fullName) Stringprivate Defined in packages/container/lib/registry.js:285 A hook to enable custom fullName normalization behaviour Parameters: fullName String Returns: String normalized fullName

Registry#resolve()

resolve (fullName, options) Functionprivate Defined in packages/container/lib/registry.js:218 Given a fullName return the corresponding factory. By default resolve will retrieve the factory from the registry. let registry = new Registry(); registry.register('api:twitter', Twitter); registry.resolve('api:twitter') // => Twitter Optionally the registry can be provided with a custom resolver. If provided, resolve will first provide the custom resolver the opportunity to resolve the fullNa

Debug.registerDeprecationHandler()

registerDeprecationHandler (handler) publicstatic Defined in packages/ember-debug/lib/index.js:224 Available since 2.1.0 Allows for runtime registration of handler functions that override the default deprecation behavior. Deprecations are invoked by calls to Ember.deprecate. The following example demonstrates its usage by registering a handler that throws an error if the message contains the word "should", otherwise defers to the default handler. Ember.Debug.registerDeprecationHandler((mess

DS.Store#retrieveManagedInstance()

retrieveManagedInstance (modelName, name, fallbacks) Ember.Objectprivate Defined in addon/-private/system/store.js:2438 Retrieve a particular instance from the container cache. If not found, creates it and placing it in the cache. Enabled a store to manage local instances of adapters and serializers. Parameters: modelName String the object modelName name String the object name fallbacks Array the fallback objects to lookup if the lookup for modelName or 'application' fails R

DataAdapter#_getObjectsOnNamespaces()

_getObjectsOnNamespacesArrayprivate Defined in packages/ember-extension-support/lib/data_adapter.js:372 Loops over all namespaces and all objects attached to them. Returns: Array Array of model type strings.

DS.JSONSerializer#normalizeAttributes()

normalizeAttributesprivate Defined in addon/serializers/json.js:727

Registry#_typeInjections

_typeInjectionsInheritingDictprivate Defined in packages/container/lib/registry.js:75

LinkComponent#disabledClass

disabledClassStringprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:423 The CSS class to apply to a LinkComponent's element when its disabled property is true. Default: disabled

ember-metal

ember-metal Module Parent: ember This namespace contains all Ember methods and functions. Future versions of Ember may overwrite this namespace and therefore, you should avoid adding any new properties. At the heart of Ember is Ember-Runtime, a set of core functions that provide cross-platform compatibility and object property observing. Ember-Runtime is small and performance-focused so you can use it alongside other cross-platform libraries such as jQuery. For more details, see Ember-Runtime.

Inflector#pluralize()

pluralize (word) Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:211 Parameters: word String