( options )
| 952 | |
| 953 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 954 | function createOptions( options ) { |
| 955 | var object = optionsCache[ options ] = {}; |
| 956 | jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { |
| 957 | object[ flag ] = true; |
| 958 | }); |
| 959 | return object; |
| 960 | } |
| 961 | |
| 962 | /* |
| 963 | * Create a callback list using the following parameters: |