mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Fix #12690. Avoid use of UTF-8 chars in final files.
This commit is contained in:
parent
5a21150c9b
commit
a60fed4dec
@ -605,7 +605,8 @@ jQuery.extend({
|
||||
},
|
||||
|
||||
// Use native String.trim function wherever possible
|
||||
trim: core_trim && !core_trim.call("\uFEFF\xA0") ?
|
||||
// Uglify converts escapes to UTF-8; this circumvents (#12690)
|
||||
trim: core_trim && !core_trim.call( String.fromCharCode( 0xFEFF, 0xA0 ) ) ?
|
||||
function( text ) {
|
||||
return text == null ?
|
||||
"" :
|
||||
|
@ -603,7 +603,7 @@ jQuery.removeEvent = document.removeEventListener ?
|
||||
|
||||
if ( elem.detachEvent ) {
|
||||
|
||||
// #8545, #7054, preventing memory leaks for custom events in IE6-8 –
|
||||
// #8545, #7054, preventing memory leaks for custom events in IE6-8
|
||||
// detachEvent needed property on element, by name of that event, to properly expose it to GC
|
||||
if ( typeof elem[ name ] === "undefined" ) {
|
||||
elem[ name ] = null;
|
||||
|
Loading…
Reference in New Issue
Block a user