fix single quotes match
This commit is contained in:
parent
067c369561
commit
b41c78206d
|
@ -81,7 +81,7 @@ angular
|
||||||
.chain(this.uris.trim().split(/\r?\n/g))
|
.chain(this.uris.trim().split(/\r?\n/g))
|
||||||
.map(function(d) {
|
.map(function(d) {
|
||||||
return _(d)
|
return _(d)
|
||||||
.replace(/["'][^"]*['"]/g, function(c) {
|
.replace(/["'][^"']*["']/g, function(c) {
|
||||||
return c.replace(/%/g,'%25').replace(/ /g,'%20');
|
return c.replace(/%/g,'%25').replace(/ /g,'%20');
|
||||||
})
|
})
|
||||||
.trim()
|
.trim()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user