From: Yehuda Katz Date: Mon, 30 Nov 2009 18:21:56 +0000 (-0800) Subject: Fixes $.trim for   closes #4980 X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=17955cacf4e8c618ca5c2b09b0d2f43df353f683 Fixes $.trim for   closes #4980 --- diff --git a/src/core.js b/src/core.js index 3ba2a85..bdc6b2f 100644 --- a/src/core.js +++ b/src/core.js @@ -29,7 +29,7 @@ var jQuery = function( selector, context ) { rnotwhite = /\S/, // Used for trimming whitespace - rtrim = /^\s+|\s+$/g, + rtrim = /(\s|\u00A0)+|(\s|\u00A0)+$/g, // Match a standalone tag rsingleTag = /<(\w+)\s*\/?>(?:<\/\1>)?$/, diff --git a/test/unit/core.js b/test/unit/core.js index 4044bd8..0640cf5 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -189,6 +189,17 @@ test("noConflict", function() { jQuery = $$; }); +test("trim", function() { + expect(4); + + var nbsp = String.fromCharCode(160); + + equals( jQuery.trim("hello "), "hello", "trailing space" ); + equals( jQuery.trim(" hello"), "hello", "leading space" ); + equals( jQuery.trim(" hello "), "hello", "space on both sides" ); + equals( jQuery.trim(" " + nbsp + "hello " + nbsp + " "), "hello", " " ); +}); + test("isFunction", function() { expect(19);