1
0
Fork 0
forked from 0x2620/oxjs

catch some global vars

This commit is contained in:
rlx 2011-11-05 17:27:11 +00:00
commit 1deb616942
8 changed files with 9 additions and 9 deletions

View file

@ -265,7 +265,7 @@ Ox.URL = function(options) {
function encodeValue(str) {
// var chars = '/&|()=*:';
var chars = '&|()=*';
var chars = '&|()=*',
ret = '';
str.split('').forEach(function(char) {
var index = chars.indexOf(char);