VisibilitySupport#_isVisibleDidChange()

_isVisibleDidChangeprivate Defined in packages/ember-views/lib/mixins/visibility_support.js:33 When the view's isVisible property changes, toggle the visibility element of the actual DOM element.

DS.RecordArray#type

typeDS.Model Defined in addon/-private/system/record-arrays/record-array.js:26 The model type contained by this record array.

Test.Adapter

Ember.Test.Adapter Class PUBLIC Defined in: packages/ember-testing/lib/adapters/adapter.js:10 Module: ember-testing The primary purpose of this class is to create hooks that can be implemented by an adapter for various test frameworks.

DS.Store#unloadAll()

unloadAll (modelName) Defined in addon/-private/system/store.js:1509 This method unloads all records in the store. Optionally you can pass a type which unload all records for a given type. store.unloadAll(); store.unloadAll('post'); Parameters: modelName String

HistoryLocation#formatURL()

formatURL (url) Stringprivate Defined in packages/ember-routing/lib/location/history_location.js:196 Used when using {{action}} helper. The url is always appended to the rootURL. Parameters: url String Returns: String formatted url

Ember.compare()

compare (v, w) Numberpublic Defined in packages/ember-runtime/lib/compare.js:40 Compares two javascript values and returns: -1 if the first is smaller than the second, 0 if both are equal, 1 if the first is greater than the second. Ember.compare('hello', 'hello'); // 0 Ember.compare('abc', 'dfg'); // -1 Ember.compare(2, 1); // 1 If the types of the two objects are different precedence occurs in the following order, with types earlier in the list considered < types

HistoryLocation#willDestroy()

willDestroyprivate Inherited from Ember.CoreObject but overwritten in packages/ember-routing/lib/location/history_location.js:221 Cleans up the HistoryLocation event listener.

HistoryLocation#replaceState()

replaceState (path) private Defined in packages/ember-routing/lib/location/history_location.js:158 Replaces the current state. Parameters: path String

Enumerable#every()

every (callback, target) Booleanpublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:556 Returns true if the passed function returns true for every item in the enumeration. This corresponds with the every() method in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): function(item, index, enumerable); item is the current item in the iteration. index is the current index in the iteration. enumerable is the enume

Ember.computed.uniq()

uniq (propertyKey) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/reduce_computed_macros.js:330 A computed property which returns a new array with all the unique elements from one or more dependent arrays. Example let Hamster = Ember.Object.extend({ uniqueFruits: Ember.computed.uniq('fruits') }); let hamster = Hamster.create({ fruits: [ 'banana', 'grape', 'kale', 'banana' ] }); hamster.get('uniqueFruits'); // ['banana', 'grape', 'kale']