From a0b19f7715c30db0b7a68cb2bd0f9b88a0306114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Thu, 13 Feb 2014 14:49:40 -0800 Subject: [PATCH] Core: Correct support comments for String.prototype.trim --- src/core.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core.js b/src/core.js index 9b87b00b1..b07463ca1 100644 --- a/src/core.js +++ b/src/core.js @@ -21,7 +21,8 @@ var return new jQuery.fn.init( selector, context ); }, - // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + // Support: Android<4.1, IE<9 + // Make sure we trim BOM and NBSP rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, // Matches dashed string for camelizing @@ -347,6 +348,7 @@ jQuery.extend({ return obj; }, + // Support: Android<4.1, IE<9 // Use native String.trim function wherever possible trim: trim && !trim.call("\uFEFF\xA0") ? function( text ) {