( options )
| 3157 | |
| 3158 | // Convert String-formatted options into Object-formatted ones |
| 3159 | function createOptions( options ) { |
| 3160 | var object = {}; |
| 3161 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 3162 | object[ flag ] = true; |
| 3163 | } ); |
| 3164 | return object; |
| 3165 | } |
| 3166 | |
| 3167 | /* |
| 3168 | * Create a callback list using the following parameters: |