( options )
| 8 | |
| 9 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 10 | function createOptions( options ) { |
| 11 | var object = optionsCache[ options ] = {}; |
| 12 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 13 | object[ flag ] = true; |
| 14 | }); |
| 15 | return object; |
| 16 | } |
| 17 | |
| 18 | /* |
| 19 | * Create a callback list using the following parameters: |