( options )
| 3421 | |
| 3422 | // Convert String-formatted options into Object-formatted ones |
| 3423 | function createOptions( options ) { |
| 3424 | var object = {}; |
| 3425 | jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { |
| 3426 | object[ flag ] = true; |
| 3427 | } ); |
| 3428 | return object; |
| 3429 | } |
| 3430 | |
| 3431 | /* |
| 3432 | * Create a callback list using the following parameters: |