...
|
...
|
@@ -9,7 +9,8 @@ var $ = require('yoho.jquery'), |
|
|
|
|
|
var defaultOptions = {
|
|
|
mask: true,
|
|
|
closeIcon: true
|
|
|
closeIcon: true,
|
|
|
refreshOnClose: false
|
|
|
};
|
|
|
|
|
|
var tpl =
|
...
|
...
|
@@ -90,6 +91,9 @@ function Dialog(options) { |
|
|
//绑定x关闭事件
|
|
|
that.$el.find('.close').click(function() {
|
|
|
that.close();
|
|
|
if (options.refreshOnClose) {
|
|
|
window.location.reload();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//绑定btn关闭事件
|
...
|
...
|
|