Removed (hopefully) all references to $ within the jQuery code itself

This commit is contained in:
Jörn Zaefferer 2006-10-06 17:15:33 +00:00
parent e218628dda
commit 7b2c84ddbe
4 changed files with 8 additions and 12 deletions

View file

@ -173,8 +173,8 @@ jQuery.fn.extend({
*/
slideToggle: function(speed,callback){
return this.each(function(){
var state = $(this).is(":hidden") ? "show" : "hide";
$(this).animate({height: state}, speed, callback);
var state = jQuery(this).is(":hidden") ? "show" : "hide";
jQuery(this).animate({height: state}, speed, callback);
});
},