diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2013-05-13 21:55:00 -0400 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-05-13 21:55:18 -0400 |
commit | a7f42d9966443342098fc6b40d6ff823c75bb43a (patch) | |
tree | 03ee6a85fe47faad77d6a4f4d75e18b2b86112c7 /src | |
parent | 42c25656d1400a9eab0ea3b67a0f8a67c39d74b9 (diff) | |
download | jquery-a7f42d9966443342098fc6b40d6ff823c75bb43a.tar.gz jquery-a7f42d9966443342098fc6b40d6ff823c75bb43a.zip |
Fix #13835: classes separated by form feed
(cherry picked from commit d8a35011ec05ed3493a85c1bd699902893cd437c)
Diffstat (limited to 'src')
-rw-r--r-- | src/attributes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attributes.js b/src/attributes.js index 8a6bf5659..4ea1bd5cf 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -1,5 +1,5 @@ var nodeHook, boolHook, - rclass = /[\t\r\n]/g, + rclass = /[\t\r\n\f]/g, rreturn = /\r/g, rfocusable = /^(?:input|select|textarea|button|object)$/i, rclickable = /^(?:a|area)$/i, |