LinkComponent#classNameBindings

classNameBindingsArraypublic Inherited from Ember.ClassNamesSupport but overwritten in packages/ember-htmlbars/lib/components/link-to.js:458 By default the {{link-to}} component will bind to the active, loading, and disabled classes. It is discouraged to override these directly. Default: ['active', 'loading', 'disabled', 'ember-transitioning-in', 'ember-transitioning-out']

LinkComponent#init()

initprivate Inherited from Ember.ViewTargetActionSupport but overwritten in packages/ember-htmlbars/lib/components/link-to.js:497 An overridable method called when LinkComponent objects are instantiated. Example: App.MyLinkComponent = Ember.LinkComponent.extend({ init: function() { this._super(...arguments); Ember.Logger.log('Event is ' + this.get('eventName')); } }); NOTE: If you do override init for a framework class like Ember.View, be sure to call this._super(...arguments)

DS.RecordArray#addInternalModel()

addInternalModel (internalModel, an) private Defined in addon/-private/system/record-arrays/record-array.js:142 Adds an internal model to the RecordArray without duplicates Parameters: internalModel InternalModel an Number optional index to insert at

Instrumentation#instrument()

instrument (name, _payload, callback, binding) private Defined in packages/ember-metal/lib/instrumentation.js:78 Notifies event's subscribers, calls before and after hooks. Parameters: name [String] Namespaced event name. _payload Object callback Function Function that you're instrumenting. binding Object Context that instrument function is called with.

DS.Model.typeForRelationship()

typeForRelationship (name, store) DS.Modelstatic Defined in addon/-private/system/relationships/ext.js:161 For a given relationship name, returns the model type of the relationship. For example, if you define a model like this: app/models/post.js import DS from 'ember-data'; export default DS.Model.extend({ comments: DS.hasMany('comment') }); Calling App.Post.typeForRelationship('comments') will return App.Comment. Parameters: name String the name of the relationship store Store

Templates.helpers.outlet()

outlet (name) public Defined in packages/ember-htmlbars/lib/keywords/outlet.js:17 The {{outlet}} helper lets you specify where a child route will render in your template. An important use of the {{outlet}} helper is in your application's application.hbs file: {{! app/templates/application.hbs }} <!-- header content goes here, and will always display --> {{my-header}} <div class="my-dynamic-content"> <!-- this content will change based on the current route, which depends o

DS.Errors#length

length{Number} Defined in addon/-private/system/model/errors.js:194 Total number of errors.

Ember.inspect()

inspect (obj) Stringprivate Defined in packages/ember-metal/lib/utils.js:398 Available since 1.4.0 Convenience method to inspect an object. This method will attempt to convert the object into a useful string description. It is a pretty simple implementation. If you want something more robust, use something like JSDump: https://github.com/NV/jsDump Parameters: obj Object The object you want to inspect. Returns: String A description of the object

TextSupport#action

actionStringprivate Defined in packages/ember-views/lib/mixins/text_support.js:143 The action to be sent when the user presses the return key. This is similar to the {{action}} helper, but is fired when the user presses the return key when editing a text field, and sends the value of the field as the context. Default: null

CoreObject#isDestroyed

isDestroyedpublic Defined in packages/ember-runtime/lib/system/core_object.js:393 Destroyed object property flag. if this property is true the observers and bindings were already removed by the effect of calling the destroy() method. Default: false