( options )
| 4 | |
| 5 | // Convert String-formatted options into Object-formatted ones |
| 6 | function createOptions( options ) { |
| 7 | var object = {}; |
| 8 | jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { |
| 9 | object[ flag ] = true; |
| 10 | } ); |
| 11 | return object; |
| 12 | } |
| 13 | |
| 14 | /* |
| 15 | * Create a callback list using the following parameters: |