( options )
| 909 | |
| 910 | // Convert String-formatted options into Object-formatted ones and store in cache |
| 911 | function createOptions( options ) { |
| 912 | var object = optionsCache[ options ] = {}; |
| 913 | jQuery.each( options.split( core_rspace ), function( _, flag ) { |
| 914 | object[ flag ] = true; |
| 915 | }); |
| 916 | return object; |
| 917 | } |
| 918 | |
| 919 | /* |
| 920 | * Create a callback list using the following parameters: |