( options )
| 2856 | |
| 2857 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 2858 | function createOptions( options ) { |
| 2859 | var object = optionsCache[ options ] = {}; |
| 2860 | jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { |
| 2861 | object[ flag ] = true; |
| 2862 | }); |
| 2863 | return object; |
| 2864 | } |
| 2865 | |
| 2866 | /* |
| 2867 | * Create a callback list using the following parameters: |