gabrielmoreira / riot-router

Riot Router - A simple routing solution for Riot
MIT License
77 stars 13 forks source link

on iphone wrong parsing parameters #7

Closed bludrate closed 9 years ago

bludrate commented 9 years ago

need to add decodeURIComponent() to 266 string in router.js params[name] = matcher[parseInt(i, 10) + 1]; to params[name] = decodeURIComponent(matcher[parseInt(i, 10) + 1]);

gabrielmoreira commented 9 years ago

Thank you @bludrate