Ember.suspendListener()

suspendListener (obj, eventName, target, method, callback) private Defined in packages/ember-metal/lib/events.js:140 Suspend listener during callback. This should only be used by the target of the event listener when it is taking an action that would cause the event, e.g. an object might suspend its property change listener while it is setting that property. Parameters: obj eventName String target Object|Function A target object or a function method Function|String A functio

Ember.STRINGS

STRINGSObjectprivate Defined in packages/ember-runtime/lib/index.js:212 Defines the hash of localized strings for the current language. Used by the Ember.String.loc() helper. To localize, add string values to this hash.

Ember.streams.Subscriber

Ember.streams.Subscriber Class PRIVATE Defined in: packages/ember-htmlbars/lib/streams/subscriber.js:7 Module: ember-metal

Ember.streams.Ember.stream.chain()

chain (value, fn) Object|Streamprivate Defined in packages/ember-htmlbars/lib/streams/utils.js:271 Generate a new stream by providing a source stream and a function that can be used to transform the stream's value. In the case of a non-stream object, returns the result of the function. The value to transform would typically be available to the function you pass to chain() via scope. For example: let source = ...; // stream returning a number // or a numeric (

Ember.streams.Ember.stream

Ember.streams.Ember.stream Class Module: ember-metal

Ember.streams.Dependency.parsePropertyPath()

parsePropertyPathprivatestatic Defined in packages/ember-htmlbars/lib/streams/class_name_binding.js:7 Parse a path and return an object which holds the parsed properties. For example a path like "content.isEnabled:enabled:disabled" will return the following object: { path: "content.isEnabled", className: "enabled", falsyClassName: "disabled", classNames: ":enabled:disabled" }

Ember.streams.Dependency.classStringForValue()

classStringForValue (path, val, className, falsyClassName) privatestatic Defined in packages/ember-htmlbars/lib/streams/class_name_binding.js:53 Get the class name for a given value, based on the path, optional className and optional falsyClassName. if a className or falsyClassName has been specified: if the value is truthy and className has been specified, className is returned if the value is falsy and falsyClassName has been specified, falsyClassName is returned otherwise null is returne

Ember.streams.Dependency

Ember.streams.Dependency Class PRIVATE Defined in: packages/ember-htmlbars/lib/streams/dependency.js:14 Module: ember-metal

Ember.stream.Stream

Ember.stream.Stream Class PRIVATE Defined in: packages/ember-htmlbars/lib/streams/stream.js:19 Module: ember-metal

Ember.setProperties()

setProperties (obj, properties) public Defined in packages/ember-metal/lib/set_properties.js:4 Set a list of properties on an object. These properties are set inside a single beginPropertyChanges and endPropertyChanges batch, so observers will be buffered. let anObject = Ember.Object.create(); anObject.setProperties({ firstName: 'Stanley', lastName: 'Stuart', age: 21 }); Parameters: obj properties Object Returns: properties