Skip to content
This repository was archived by the owner on Apr 16, 2019. It is now read-only.

Commit 114f299

Browse files
committed
# fix bogus assignment
1 parent 4ae72a0 commit 114f299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/af.popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
};
5757
this.id = opts.id = opts.id || $.uuid(); //opts is passed by reference
5858
this.addCssClass = opts.addCssClass ? opts.addCssClass : "";
59-
this.suppressTitle = opts.suppressTitle || opts.suppressTitle;
59+
this.suppressTitle = opts.suppressTitle || this.suppressTitle;
6060
this.title = opts.suppressTitle ? "" : (opts.title || "Alert");
6161
this.message = opts.message || "";
6262
this.cancelText = opts.cancelText || "Cancel";

0 commit comments

Comments
 (0)