( options )
| 3008 | |
| 3009 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 3010 | function createOptions( options ) { |
| 3011 | var object = optionsCache[ options ] = {}; |
| 3012 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 3013 | object[ flag ] = true; |
| 3014 | }); |
| 3015 | return object; |
| 3016 | } |
| 3017 | |
| 3018 | /* |
| 3019 | * Create a callback list using the following parameters: |