ViewTargetActionSupport#nearestOfType()

nearestOfType (klass) deprecatedprivate Defined in packages/ember-views/lib/mixins/view_support.js:21 use yield and contextual components for composition instead. Return the nearest ancestor that is an instance of the provided class or mixin. Parameters: klass Class,Mixin Subclass of Ember.View (or Ember.View itself), or an instance of Ember.Mixin. Returns: Ember.View

DS.Model#hasDirtyAttributes

hasDirtyAttributes{Boolean} Defined in addon/-private/system/model/model.js:101 Available since 1.13.0 If this property is true the record is in the dirty state. The record has local changes that have not yet been saved by the adapter. This includes records that have been created (but not yet saved) or deleted. Example var record = store.createRecord('model'); record.get('hasDirtyAttributes'); // true store.findRecord('model', 1).then(function(model) { model.get('hasDirtyAttributes'); //

DataAdapter#willDestroy()

willDestroyprivate Defined in packages/ember-extension-support/lib/data_adapter.js:239 Clear all observers before destruction

Map#delete()

delete (key) Booleanprivate Defined in packages/ember-metal/lib/map.js:321 Available since 1.8.0 Removes a value from the map for an associated key. Parameters: key * Returns: Boolean true if an item was removed, false otherwise

Mixin#apply()

apply (obj) private Defined in packages/ember-metal/lib/mixin.js:555 Parameters: obj Returns: applied object

RegistryProxyMixin#hasRegistration()

hasRegistration (fullName) Booleanpublic Defined in packages/ember-runtime/lib/mixins/registry_proxy.js:110 Check if a factory is registered. Parameters: fullName String Returns: Boolean

Inflector#inflect()

inflect (word, typeRules, irregular) protected Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:234 Parameters: word String typeRules Object irregular Object

Route#exit()

exitprivate Defined in packages/ember-routing/lib/system/route.js:469

HTMLBars#helpers

helpersprivate Inherited from Ember.HTMLBars but overwritten in packages/ember-htmlbars/lib/keywords.js:8

Instrumentation#unsubscribe()

unsubscribe (subscriber) private Defined in packages/ember-metal/lib/instrumentation.js:216 Unsubscribes from a particular event or instrumented block of code. Parameters: subscriber [Object]