angular/modules
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
..
benchmarks feat(events): adds support for injectable angular event emitters. 2015-01-22 10:14:03 -08:00
benchmarks_external feat(perf): autoscale benchmarks depending on the browser. 2015-01-20 13:06:37 -08:00
change_detection style(cd): add types 2015-01-22 11:08:10 +01:00
core feat(events): adds support for injectable angular event emitters. 2015-01-22 10:14:03 -08:00
di fix(bootstrap): change bootstrap not to create a separate injector for the provided bindings 2015-01-08 19:53:18 -08:00
directives feat(directive): add ng-switch directive 2015-01-22 18:49:10 +01:00
e2e_test_lib feat(perf): autoscale benchmarks depending on the browser. 2015-01-20 13:06:37 -08:00
examples fix(e2e): adds events to hello world static. 2015-01-14 18:00:27 -08:00
facade fix(ListWrapper): fix JS ListWrapper.remove() 2015-01-22 09:41:26 +01:00
reflection style: fix typos 2014-12-04 11:01:19 +01:00
rtts_assert feat(test_lib): implement SpyObject 2014-12-29 13:27:17 -08:00
test_lib feat(emuldated_shadow_dom): implement intermediate content tags 2015-01-15 17:43:45 -08:00