( options )
| 3056 | |
| 3057 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 3058 | function createOptions( options ) { |
| 3059 | var object = optionsCache[ options ] = {}; |
| 3060 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 3061 | object[ flag ] = true; |
| 3062 | }); |
| 3063 | return object; |
| 3064 | } |
| 3065 | |
| 3066 | /* |
| 3067 | * Create a callback list using the following parameters: |