DataAdapter#wrapRecord()

wrapRecord (record) Objectprivate Defined in packages/ember-extension-support/lib/data_adapter.js:414 Wraps a record and observers changes to it. Parameters: record Object The record instance. Returns: Object The wrapped record. Format: columnValues: {Array} searchKeywords: {Array}

Ember.run._addQueue()

_addQueue (name, after) private Defined in packages/ember-metal/lib/run_loop.js:668 Add a new named queue after the specified queue. The queue to add will only be added once. Parameters: name String the name of the queue to add. after String the name of the queue to add after.

Ember.computed.lte()

lte (dependentKey, value) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/computed_macros.js:389 A computed property that returns true if the provided dependent property is less than or equal to the provided value. Example let Hamster = Ember.Object.extend({ needsMoreBananas: Ember.computed.lte('numBananas', 3) }); let hamster = Hamster.create(); hamster.get('needsMoreBananas'); // true hamster.set('numBananas', 5); hamster.get('needsMoreBananas'); // false h

Instrumentation#subscribe()

subscribe (pattern, object) Subscriberprivate Defined in packages/ember-metal/lib/instrumentation.js:175 Subscribes to a particular event or instrumented block of code. Parameters: pattern [String] Namespaced event name. object [Object] Before and After hooks. Returns: Subscriber

OrderedSet#add()

add (obj, guid) Ember.OrderedSetprivate Defined in packages/ember-metal/lib/map.js:99 Parameters: obj guid (optional, and for internal use) Returns: Ember.OrderedSet

Transition#catch()

catch (onRejection, label) Promisepublic Defined in bower_components/router.js/lib/router/transition.js:155 Forwards to the internal promise property which you can use in situations where you want to pass around a thennable, but not the Transition itself. Parameters: onRejection Function label String optional string for labeling the promise. Useful for tooling. Returns: Promise

HistoryLocation#onUpdateURL()

onUpdateURL (callback) private Defined in packages/ember-routing/lib/location/history_location.js:175 Register a callback to be invoked whenever the browser history changes, including using forward and back buttons. Parameters: callback Function

Engine

Ember.Engine Class PUBLIC Extends: Ember.Namespace Uses: RegistryProxy Defined in: packages/ember-application/lib/system/engine.js:37 Module: ember-application The Engine class contains core functionality for both applications and engines. Each engine manages a registry that's used for dependency injection and exposed through RegistryProxy. Engines also manage initializers and instance initializers. Engines can spawn EngineInstance instances via buildInstance().

Enumerable#compact()

compactArraypublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:774 Returns a copy of the array with all null and undefined elements removed. let arr = ['a', null, 'c', undefined]; arr.compact(); // ['a', 'c'] Returns: Array the array without null and undefined elements.

Binding#to()

to (path) Ember.Bindingpublic Defined in packages/ember-metal/lib/binding.js:87 This will set the to property path to the specified value. It will not attempt to resolve this property path to an actual object until you connect the binding. The binding will search for the property path starting at the root object you pass when you connect() the binding. It follows the same rules as get() - see that method for more information. Parameters: path String|Tuple A property path or tuple. R