Open
Description
Currently, the encoding on query strings sent by PreloadJS uses escape()
. We should consider using encodeURIComponent
instead to make it handle special characters better. jQuery's ajax method uses this (and also encodes the key on each param).
The method is URLUtils.formatQueryString()
, currently on line 147.