Removed (hopefully) all references to $ within the jQuery code itself
This commit is contained in:
parent
e218628dda
commit
7b2c84ddbe
4 changed files with 8 additions and 12 deletions
|
@ -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);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue