.noConflict() compliance: only reference $, not jQuery, inside the closure

This commit is contained in:
jgoldberg 2012-07-17 14:23:21 -05:00
parent 590d78f921
commit 5fc6af970b

View file

@ -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 );