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 9c69e01 commit fad4131Copy full SHA for fad4131
ChangeLog.txt
@@ -1,8 +1,9 @@
1
==== SimpleModal ChangeLog ====
2
3
== 1.4.3 ==
4
- * Date: August 22, 2012
+ * Date: September 08, 2012
5
* Changed $.boxModel to $.support.boxModel (requires jQuery 1.3+)
6
+ * Fixed potential noConflict bug. Thanks to Erik Westra
7
8
9
== 1.4.2 ==
src/jquery.simplemodal.js
@@ -246,7 +246,7 @@
246
// determine how to handle the data based on its type
247
if (typeof data === 'object') {
248
// convert DOM object to a jQuery object
249
- data = data instanceof jQuery ? data : $(data);
+ data = data instanceof $ ? data : $(data);
250
s.d.placeholder = false;
251
252
// if the object came from the DOM, keep track of its parent
0 commit comments