( obj )
| 2730 | |
| 2731 | // checks a cache object for emptiness |
| 2732 | function isEmptyDataObject( obj ) { |
| 2733 | var name; |
| 2734 | for ( name in obj ) { |
| 2735 | |
| 2736 | // if the public data object is empty, the private is still empty |
| 2737 | if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { |
| 2738 | continue; |
| 2739 | } |
| 2740 | if ( name !== "toJSON" ) { |
| 2741 | return false; |
| 2742 | } |
| 2743 | } |
| 2744 | |
| 2745 | return true; |
| 2746 | } |
| 2747 | jQuery.extend({ |
| 2748 | queue: function( elem, type, data ) { |
| 2749 | var queue; |
no outgoing calls
no test coverage detected
searching dependent graphs…