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.
2 parents 27d91e4 + 114f299 commit 3135ae1Copy full SHA for 3135ae1
1 file changed
plugins/af.popup.js
@@ -56,6 +56,7 @@
56
};
57
this.id = opts.id = opts.id || $.uuid(); //opts is passed by reference
58
this.addCssClass = opts.addCssClass ? opts.addCssClass : "";
59
+ this.suppressTitle = opts.suppressTitle || this.suppressTitle;
60
this.title = opts.suppressTitle ? "" : (opts.title || "Alert");
61
this.message = opts.message || "";
62
this.cancelText = opts.cancelText || "Cancel";
@@ -93,7 +94,7 @@
93
94
cancelOnly: false,
95
onShow: null,
96
autoCloseDone: true,
- supressTitle: false,
97
+ suppressTitle: false,
98
show: function () {
99
var self = this;
100
var markup = "<div id='" + this.id + "' class='afPopup hidden "+ this.addCssClass + "'>"+
0 commit comments