Skip to content

Commit

Permalink
release offline 1.0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sschmidTU committed Oct 28, 2020
1 parent 51b19f4 commit c6748f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ $(function() {

var result = $('#search-results');
var entries = $('#search-results .entries');
if (query.length < 2) {
// this should have trim(), but maybe this isn't necessary on offline, so let's allow a workaround by adding spaces
if (query.length <= 2) {
result.hide();
entries.empty();
return;
}

if (query == "version") {
console.log("1.0.0.11");
console.log("1.0.1.0");
}

// mapping from WK radicals to RTK elements. (format of the values is comma separated, no spaces between values)
Expand Down

0 comments on commit c6748f6

Please sign in to comment.