...
|
...
|
@@ -68,7 +68,7 @@ function Dialog(options) { |
|
|
var that = this,
|
|
|
i;
|
|
|
|
|
|
//实现继承时,只返回实例,不生成html
|
|
|
// 实现继承时,只返回实例,不生成html
|
|
|
if (opt.inherit) {
|
|
|
return this;
|
|
|
}
|
...
|
...
|
@@ -90,7 +90,7 @@ function Dialog(options) { |
|
|
}
|
|
|
}
|
|
|
|
|
|
//绑定x关闭事件
|
|
|
// 绑定x关闭事件
|
|
|
that.$el.find('.close').click(function() {
|
|
|
that.close();
|
|
|
if (options.refreshOnClose) {
|
...
|
...
|
@@ -98,7 +98,7 @@ function Dialog(options) { |
|
|
}
|
|
|
});
|
|
|
|
|
|
//绑定btn关闭事件
|
|
|
// 绑定btn关闭事件
|
|
|
that.$el.find('.btn-close').click(function() {
|
|
|
that.close();
|
|
|
});
|
...
|
...
|
@@ -109,8 +109,8 @@ function Dialog(options) { |
|
|
});
|
|
|
}
|
|
|
|
|
|
//绑定按钮事件
|
|
|
if (!!opt.btns) {
|
|
|
// 绑定按钮事件
|
|
|
if (!opt.btns) {
|
|
|
for (i = 0; i < opt.btns.length; i++) {
|
|
|
bindBtnEvt(i);
|
|
|
}
|
...
|
...
|
|