( options )
| 972 | |
| 973 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 974 | function createOptions( options ) { |
| 975 | var object = optionsCache[ options ] = {}; |
| 976 | jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { |
| 977 | object[ flag ] = true; |
| 978 | }); |
| 979 | return object; |
| 980 | } |
| 981 | |
| 982 | /* |
| 983 | * Create a callback list using the following parameters: |