MCPcopy Index your code
hub / github.com/JsAaron/jQuery / queue

Function queue

1.2.6/src/fx.js:182–194  ·  view source on GitHub ↗
( elem, type, array )

Source from the content-addressed store, hash-verified

180});
181
182var queue = function( elem, type, array ) {
183 if ( elem ){
184
185 type = type || "fx";
186
187 var q = jQuery.data( elem, type + "queue" );
188
189 if ( !q || array )
190 q = jQuery.data( elem, type + "queue", jQuery.makeArray(array) );
191
192 }
193 return q;
194};
195
196jQuery.fn.dequeue = function(type){
197 type = type || "fx";

Callers 1

fx.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected