From fda5c7eaa28eada22f87471fdc892cb47e940d34 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 11 Nov 2013 09:20:04 +0000 Subject: [PATCH] string spans can contain spaces, encode in url --- source/Ox.UI/js/Core/URL.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index 683e9942..013cf8e0 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -516,7 +516,7 @@ Ox.URL = function(options) { : spanType == 'duration' ? constructDuration(point) : spanType == 'location' ? constructLocation(point) : point - ) : point; + ) : encodeValue(point, true); }).join(','); }