Change embedded regexp to a variable (for #6876).
This commit is contained in:
parent
1d1d4fe112
commit
4e86766d54
1 changed files with 3 additions and 2 deletions
|
@ -11,6 +11,7 @@ var r20 = /%20/g,
|
||||||
rselectTextarea = /^(?:select|textarea)/i,
|
rselectTextarea = /^(?:select|textarea)/i,
|
||||||
rts = /([?&])_=[^&]*/,
|
rts = /([?&])_=[^&]*/,
|
||||||
rurl = /^(\w+:)?\/\/([^\/?#:]+)(?::(\d+))?/,
|
rurl = /^(\w+:)?\/\/([^\/?#:]+)(?::(\d+))?/,
|
||||||
|
rCRLF = /\r?\n/g,
|
||||||
|
|
||||||
// Slice function
|
// Slice function
|
||||||
sliceFunc = Array.prototype.slice,
|
sliceFunc = Array.prototype.slice,
|
||||||
|
@ -107,9 +108,9 @@ jQuery.fn.extend({
|
||||||
null :
|
null :
|
||||||
jQuery.isArray(val) ?
|
jQuery.isArray(val) ?
|
||||||
jQuery.map( val, function(val, i){
|
jQuery.map( val, function(val, i){
|
||||||
return {name: elem.name, value: val.replace(/\r?\n/g, "\r\n")};
|
return { name: elem.name, value: val.replace(rCRLF, "\r\n") };
|
||||||
}) :
|
}) :
|
||||||
{name: elem.name, value: val.replace(/\r?\n/g, "\r\n")};
|
{ name: elem.name, value: val.replace(rCRLF, "\r\n") };
|
||||||
}).get();
|
}).get();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue