Make button onclick work inside nextmatch again

This commit is contained in:
Nathan Gray 2012-03-12 18:25:36 +00:00
parent 8820bf0acf
commit 268be2c8b9

View File

@ -202,7 +202,12 @@ var et2_button = et2_baseWidget.extend([et2_IInput, et2_IDetachedDOM], {
{ {
this.options.onclick = _values["onclick"]; this.options.onclick = _values["onclick"];
} }
var type = this._type
var attrs = jQuery.extend(_values, this.options);
var parent = this._parent;
jQuery(this.getDOMNode()).bind("click.et2_baseWidget", this, function(e) { jQuery(this.getDOMNode()).bind("click.et2_baseWidget", this, function(e) {
var widget = et2_createWidget(type,attrs,parent);
e.data = widget;
e.data.set_id(_values["id"]); e.data.set_id(_values["id"]);
return e.data.click.call(e.data,e); return e.data.click.call(e.data,e);
}); });