...
|
...
|
@@ -16,7 +16,7 @@ var tpl = |
|
|
'<div class="yoho-dialog {{className}} hide">' +
|
|
|
'{{#if closeIcon}}' +
|
|
|
'<span class="close">' +
|
|
|
'<i class="iconfont"></i>' +
|
|
|
'<i class="iconfont"></i>' +
|
|
|
'</span>' +
|
|
|
'{{/if}}' +
|
|
|
'<div class="content">' +
|
...
|
...
|
@@ -93,8 +93,8 @@ Dialog.prototype.close = function() { |
|
|
Dialog.prototype.show = function() {
|
|
|
this.$mask && this.$mask.removeClass('hide');
|
|
|
this.$el.removeClass('hide').css({
|
|
|
'margin-top': -this.$el.height() / 2,
|
|
|
'margin-left': -this.$el.width() / 2
|
|
|
'margin-top': -this.$el.outerHeight() / 2,
|
|
|
'margin-left': -this.$el.outerWidth() / 2
|
|
|
});
|
|
|
};
|
|
|
|
...
|
...
|
|