forked from 0x2620/oxjs
Ox.URL: fix a bug when decoding multiple tabs in url
This commit is contained in:
parent
a0dc7500ca
commit
0c60ca25da
1 changed files with 1 additions and 1 deletions
|
|
@ -563,7 +563,7 @@ Ox.URL = function(options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function decodeValue(value) {
|
function decodeValue(value) {
|
||||||
return Ox.decodeURIComponent(value).replace(/_/g, ' ').replace(Ox.char(9), '_');
|
return Ox.decodeURIComponent(value).replace(/_/g, ' ').replace(/\t/g, '_');
|
||||||
}
|
}
|
||||||
|
|
||||||
function encodeValue(value, isItem) {
|
function encodeValue(value, isItem) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue