( options )
| 414 | |
| 415 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 416 | function createOptions( options ) { |
| 417 | var object = optionsCache[ options ] = {}; |
| 418 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 419 | object[ flag ] = true; |
| 420 | }); |
| 421 | return object; |
| 422 | } |
| 423 | |
| 424 | /* |
| 425 | * Create a callback list using the following parameters: |