angular/modules/core/src
Rado Kirov fd34a56347 feat(events): adds support for injectable angular event emitters.
Event emitters can be injected into Directives. Event emitters take over
browser events with the same name. Emitted events do not bubble. Event
emitters can be injected even if there is no corresponding callback in
the template.

Use as follows:
@Decorator(...)
class MyDec(@EventEmitter('click') clickEmitter) {
 ...
 fireClick() {
  var eventData = {...};
  this._clickEmitter(eventData);
 }
}
2015-01-22 10:14:03 -08:00
..
annotations feat(events): adds support for injectable angular event emitters. 2015-01-22 10:14:03 -08:00
compiler feat(events): adds support for injectable angular event emitters. 2015-01-22 10:14:03 -08:00
dom feat(components): initial implementation of emulated content tag 2015-01-08 19:38:37 -08:00
life_cycle feat(change_detection): reimplement change detection 2015-01-21 14:21:14 -08:00
zone feat(zone): add support for long stack traces 2014-12-17 14:56:54 -08:00
application.js feat(change_detection): reimplement change detection 2015-01-21 14:21:14 -08:00
core.js refactor(change_detection): add change_detection library file 2014-12-29 15:20:42 -08:00