.noConflict() compliance: only reference $, not jQuery, inside the closure
This commit is contained in:
parent
590d78f921
commit
5fc6af970b
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@
|
||||||
|
|
||||||
return this.each(function(){
|
return this.each(function(){
|
||||||
var element = options.render == "canvas" ? createCanvas() : createTable();
|
var element = options.render == "canvas" ? createCanvas() : createTable();
|
||||||
jQuery(element).appendTo(this);
|
$(element).appendTo(this);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
})( jQuery );
|
})( jQuery );
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue