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