提交 9c6c0bfe 编写于 作者: I isidor

actionbar: pass in event as part of the context

上级 8bee53a9
......@@ -135,7 +135,14 @@ export class BaseActionItem extends EventEmitter implements IActionItem {
public onClick(event: Event): void {
DOM.EventHelper.stop(event, true);
const context = (this._context === null || this._context === undefined) ? event : this._context;
let context: any;
if (types.isUndefinedOrNull(this._context)) {
context = event;
} else {
context = this._context;
context.event = event;
}
this._actionRunner.run(this._action, context);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册