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