( options )
| 2983 | |
| 2984 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 2985 | function createOptions( options ) { |
| 2986 | var object = optionsCache[ options ] = {}; |
| 2987 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 2988 | object[ flag ] = true; |
| 2989 | }); |
| 2990 | return object; |
| 2991 | } |
| 2992 | |
| 2993 | /* |
| 2994 | * Create a callback list using the following parameters: |