Skip to content

Fluent API

Choose a tag to compare

@poteto poteto released this 05 Nov 00:51
· 195 commits to master since this release

This patch release adds a small feature to support method chaining. You can now do the following:

Ember.get(this, 'flashMessages')
  .registerTypes(['meow'])
  .clearMessages()
  .add({ message: 'foo' })
  .meow('nyan');