Skip to content

Commit

Permalink
Bug in rmultidash. Fixes #10194
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron authored and dmethvin committed Sep 7, 2011
1 parent 4bc691a commit 8e8fa6d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
5 changes: 3 additions & 2 deletions src/data.js
@@ -1,7 +1,7 @@
(function( jQuery ) {

var rbrace = /^(?:\{.*\}|\[.*\])$/,
rmultiDash = /([a-z])([A-Z])/g;
rmultiDash = /([A-Z])/g;

jQuery.extend({
cache: {},
Expand Down Expand Up @@ -316,7 +316,8 @@ function dataAttr( elem, key, data ) {
// If nothing was found internally, try to fetch any
// data from the HTML5 data-* attribute
if ( data === undefined && elem.nodeType === 1 ) {
var name = "data-" + key.replace( rmultiDash, "$1-$2" ).toLowerCase();

var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();

data = elem.getAttribute( name );

Expand Down
23 changes: 13 additions & 10 deletions test/unit/data.js
Expand Up @@ -488,23 +488,26 @@ if (window.JSON && window.JSON.stringify) {
}

test("jQuery.data should follow html5 specification regarding camel casing", function() {
expect(8);
expect(10);

var div = jQuery("<div id='myObject' data-foo='a' data-foo-bar='b' data-foo-bar-baz='c'></div>")
var div = jQuery("<div id='myObject' data-w-t-f='ftw' data-big-a-little-a='bouncing-b' data-foo='a' data-foo-bar='b' data-foo-bar-baz='c'></div>")
.prependTo("body");

equals(div.data().foo, "a", "Verify single word data-* key");
equals(div.data().fooBar, "b", "Verify multiple word data-* key");
equals(div.data().fooBarBaz, "c", "Verify multiple word data-* key");
equal( div.data().wTF, "ftw", "Verify single letter data-* key" );
equal( div.data().bigALittleA, "bouncing-b", "Verify single letter mixed data-* key" );

equals(div.data("foo"), "a", "Verify single word data-* key");
equals(div.data("fooBar"), "b", "Verify multiple word data-* key");
equals(div.data("fooBarBaz"), "c", "Verify multiple word data-* key");
equal( div.data().foo, "a", "Verify single word data-* key" );
equal( div.data().fooBar, "b", "Verify multiple word data-* key" );
equal( div.data().fooBarBaz, "c", "Verify multiple word data-* key" );

equal( div.data("foo"), "a", "Verify single word data-* key" );
equal( div.data("fooBar"), "b", "Verify multiple word data-* key" );
equal( div.data("fooBarBaz"), "c", "Verify multiple word data-* key" );

div.data("foo-bar", "d");

equals(div.data("fooBar"), "d", "Verify updated data-* key");
equals(div.data("foo-bar"), "d", "Verify updated data-* key");
equal( div.data("fooBar"), "d", "Verify updated data-* key" );
equal( div.data("foo-bar"), "d", "Verify updated data-* key" );

div.remove();
});
Expand Down

0 comments on commit 8e8fa6d

Please sign in to comment.