( options )
| 3112 | |
| 3113 | // Convert String-formatted options into Object-formatted ones |
| 3114 | function createOptions( options ) { |
| 3115 | var object = {}; |
| 3116 | jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { |
| 3117 | object[ flag ] = true; |
| 3118 | } ); |
| 3119 | return object; |
| 3120 | } |
| 3121 | |
| 3122 | /* |
| 3123 | * Create a callback list using the following parameters: |