0.0.2 • Published 9 years ago

ember-cli-events-bus v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Events-bus

Simple global events service.

Adds Ember Evented Service to your routs, controllers and components

Service known as eventsBus and globalEvents

Installation

ember install ember-cli-events-bus

Usage

my-component.js

  ...
  actions: {
    save() {
      ...
      this.globalEvents.trigger('foo:bar', data)
      ...
    }
  }
  ...

my-controller.js

  ...
  init() {
    ...
    this.globalEvents.on('foo:bar', this, 'bar')
    ...
  },
  bar(data) {
    ...
  }
  ...