x-tools / xtools-legacy

Repository for the legacy XTools. See https://github.com/x-tools/xtools for the rewrite
GNU General Public License v3.0
42 stars 21 forks source link

Accept non-breaking spaces and thin spaces in numbers #102

Closed tbertels closed 7 years ago

tbertels commented 8 years ago

For issue #92 [AdminStats] Sorting by column does not work in French

tbertels commented 8 years ago

It seems that sortable.js is encoded in windows-1252, so it would need to be converted to UTF-8 for this commit.

Matthewrbowker commented 8 years ago

How about using \s instead of an actual space?

Technical-13 commented 8 years ago

\s includes \n \r and \t. Are we sure that won't break anything? [\s^\n^\r^\t] overkill?