string spans can contain spaces, encode in url

This commit is contained in:
j 2013-11-11 09:20:04 +00:00
parent fee4339d11
commit fda5c7eaa2

View file

@ -516,7 +516,7 @@ Ox.URL = function(options) {
: spanType == 'duration' ? constructDuration(point) : spanType == 'duration' ? constructDuration(point)
: spanType == 'location' ? constructLocation(point) : spanType == 'location' ? constructLocation(point)
: point : point
) : point; ) : encodeValue(point, true);
}).join(','); }).join(',');
} }