We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd3b77b commit b322705Copy full SHA for b322705
jquery.msgbox.js
@@ -616,7 +616,8 @@
616
617
case 'html':
618
case 'confirm':
619
- this.$loaded.html(this.options.content).appendTo(this.$content);
+ var content = $.type(this.options.content)==='object' ? this.options.content.show() : this.options.content;
620
+ this.$loaded.html(content).appendTo(this.$content);
621
this.loaded = true;
622
if (callback) callback.apply(this);
623
if (this.options.onLoad) this.options.onLoad.apply(this);
0 commit comments