diff --git a/modules/core/src/compiler/view.js b/modules/core/src/compiler/view.js index 0ba733269d..b6ea93bd6f 100644 --- a/modules/core/src/compiler/view.js +++ b/modules/core/src/compiler/view.js @@ -391,16 +391,18 @@ export class ProtoView { } static _addNativeEventListener(element: Element, eventName: string, expr, view: View) { + var locals = MapWrapper.create(); DOM.on(element, eventName, (event) => { if (event.target === element) { // Most of the time the event will be fired only when the view is // in the live document. However, in a rare circumstance the // view might get dehydrated, in between the event queuing up and // firing. - // TODO(rado): replace with - // expr.eval(new ContextWithVariableBindings(view.context, {'$event': event})); - // when eval with variable bindinds works. - if (view.hydrated()) expr.eval(view.context); + if (view.hydrated()) { + MapWrapper.set(locals, '\$event', event); + var context = new ContextWithVariableBindings(view.context, locals); + expr.eval(context); + } } }); } diff --git a/modules/core/test/compiler/view_spec.js b/modules/core/test/compiler/view_spec.js index 20e69a65b1..ee150c82e4 100644 --- a/modules/core/test/compiler/view_spec.js +++ b/modules/core/test/compiler/view_spec.js @@ -404,24 +404,29 @@ export function main() { }); describe('event handlers', () => { - var view, ctx, called; + var view, ctx, called, receivedEvent, dispatchedEvent; function createViewAndContext(protoView) { view = createView(protoView); ctx = view.context; called = 0; - ctx.callMe = () => called += 1; + receivedEvent = null; + ctx.callMe = (event) => { + called += 1; + receivedEvent = event; + } } function dispatchClick(el) { - DOM.dispatchEvent(el, DOM.createMouseEvent('click')); + dispatchedEvent = DOM.createMouseEvent('click'); + DOM.dispatchEvent(el, dispatchedEvent); } function createProtoView() { var pv = new ProtoView(el('