You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.