diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2012-06-15 21:01:44 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-06-15 21:01:44 -0400 |
commit | a101e81bde71e94170f1fa899432cbe8150910f9 (patch) | |
tree | 9d3a75a1f5f14267e8ba6e1058d2c4e81c45c8f0 /src/callbacks.js | |
parent | 46d680458b74fcf956f6161a2b73b6b00fc2541d (diff) | |
download | jquery-a101e81bde71e94170f1fa899432cbe8150910f9.tar.gz jquery-a101e81bde71e94170f1fa899432cbe8150910f9.zip |
Interim take on cross-module variables, closes gh-817.
Diffstat (limited to 'src/callbacks.js')
-rw-r--r-- | src/callbacks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callbacks.js b/src/callbacks.js index 12f2956ce..735330f12 100644 --- a/src/callbacks.js +++ b/src/callbacks.js @@ -4,7 +4,7 @@ var optionsCache = {}; // Convert String-formatted options into Object-formatted ones and store in cache function createOptions( options ) { var object = optionsCache[ options ] = {}; - jQuery.each( options.split( /\s+/ ), function( _, flag ) { + jQuery.each( options.split( core_rspace ), function( _, flag ) { object[ flag ] = true; }); return object; |