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