Route#replaceWith()

replaceWith (name, models) Transitionpublic Defined in packages/ember-routing/lib/system/route.js:1093 Transition into another route while replacing the current URL, if possible. This will replace the current history entry instead of adding a new one. Beside that, it is identical to transitionTo in all other respects. See 'transitionTo' for additional information regarding multiple models. Example App.Router.map(function() { this.route('index'); this.route('secret'); }); App.SecretRout

Handlebars Basics

Handlebars Basics Ember uses the Handlebars templating library to power your app's user interface. Handlebars templates contain static HTML and dynamic content inside Handlebars expressions, which are invoked with double curly braces: {{}}. Dynamic content inside a Handlebars expression is rendered with data-binding. This means if you update a property, your usage of that property in a template will be automatically updated to the latest value. Displaying Properties Templates are backed with

DS.EmbeddedRecordsMixin#_extractEmbeddedBelongsTo()

_extractEmbeddedBelongsToprivate Defined in addon/serializers/embedded-records-mixin.js:577

ContainerProxyMixin#ownerInjection()

ownerInjectionObjectpublic Defined in packages/ember-runtime/lib/mixins/container_proxy.js:26 Returns an object that can be used to provide an owner to a manually created instance. Example: let owner = Ember.getOwner(this); User.create( owner.ownerInjection(), { username: 'rwjblue' } ) Returns: Object

Ember.stream.Stream

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

Container#reset()

reset (fullName) private Defined in packages/container/lib/container.js:153 Clear either the entire cache or just the cache for a particular key. Parameters: fullName String optional key to reset; if missing, resets everything

MapWithDefault

Ember.MapWithDefault Class PRIVATE Extends: Ember.Map Defined in: packages/ember-metal/lib/map.js:412 Module: ember-metal

Ember._addBeforeObserver()

_addBeforeObserver (obj, path, target, method) deprecatedprivate Defined in packages/ember-metal/lib/observer.js:63 Parameters: obj path String target Object|Function method [Function|String]

DS.Snapshot#record

record{DS.Model} Defined in addon/-private/system/snapshot.js:63 The underlying record for this snapshot. Can be used to access methods and properties defined on the record. Example var json = snapshot.record.toJSON();

Route#setup()

setupprivate Defined in packages/ember-routing/lib/system/route.js:1177 This hook is the entry point for router.js