aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2016-01-07 16:50:26 -0500
committerTimmy Willison <timmywillisn@gmail.com>2016-01-07 16:50:59 -0500
commitc1511c673148208ab17cafa0faf37bce3b4ae392 (patch)
tree39558a632bf0c13d004d16239bccfc874a26fd36 /src/data.js
parentb9a695865b4eb3916f7320026d028a2866da6e4e (diff)
downloadjquery-c1511c673148208ab17cafa0faf37bce3b4ae392.tar.gz
jquery-c1511c673148208ab17cafa0faf37bce3b4ae392.zip
Data: find hyphenated data with camelCased key
Fixes gh-2779
Diffstat (limited to 'src/data.js')
-rw-r--r--src/data.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/data.js b/src/data.js
index f7734e7f3..b626fda45 100644
--- a/src/data.js
+++ b/src/data.js
@@ -123,7 +123,12 @@ jQuery.fn.extend( {
// Attempt to get data from the cache
// with the key as-is
- data = dataUser.get( elem, key );
+ data = dataUser.get( elem, key ) ||
+
+ // Try to find dashed key if it exists (gh-2779)
+ // This is for 2.2.x only
+ dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() );
+
if ( data !== undefined ) {
return data;
}