Commit cf425d17 by Clinton Blackburn

Fixed bug related to whitespace stripping

 Stripping all whitespace breaks the queries being previewed. We can live with the extra bytes of whitespace going over the wire.
parent aeb4265f
...@@ -39,9 +39,6 @@ $(function () { ...@@ -39,9 +39,6 @@ $(function () {
e.preventDefault(); e.preventDefault();
if (query) { if (query) {
// Remove all whitespace
query = query.replace(/\s/g, "");
// URL encode // URL encode
query = encodeURIComponent(query); query = encodeURIComponent(query);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment