From ecdcda870c70c262ec3198e067dd06e847f682dd Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 10 Dec 2009 14:03:24 -0800 Subject: [PATCH] Missed the case of bind in the new attr multi-setter. --- src/attributes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/attributes.js b/src/attributes.js index fb5b16bcd..9c868ee03 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -211,7 +211,8 @@ jQuery.extend({ data: true, width: true, height: true, - offset: true + offset: true, + bind: true }, attr: function( elem, name, value ) { -- 2.39.5