Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
remove needless garbage
Browse files Browse the repository at this point in the history
  • Loading branch information
soops committed Feb 9, 2016
1 parent 903f56d commit 431e24d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ var backdoor = {
var newText = text.replace(unicode, function(match, p1, p2) {
return "&#" + parseInt(p1, 16).toString(10) + ";";
});

return newText;
}
}
Expand Down Expand Up @@ -132,7 +133,6 @@ window.log = function(log) {

// check if everything is alright before querying wolfram
function preQuery() {
var blankInput = Boolean();
if ($('#input').val() !== "") {
query();
} else if ($('#input').val() === "") {
Expand Down

0 comments on commit 431e24d

Please sign in to comment.