1
0
Fork 0
forked from 0x2620/oxjs

also replace %20 in item id in url

This commit is contained in:
j 2013-08-17 15:48:01 +02:00
commit 610720254d

View file

@ -532,7 +532,7 @@ Ox.URL = function(options) {
parts.push(state.type);
}
if (state.item) {
parts.push(state.item);
parts.push(encodeValue(state.item));
}
if (state.type && self.options.views[state.type][
state.item ? 'item' : 'list'