Skip to content

Commit

Permalink
Update eXide.js
Browse files Browse the repository at this point in the history
Queries do not only find, but construct, so "returned" is a better word than "found". The popup will have to be made a little wider. Perhaps the "s" on "item" should be made conditional on "+h+". Same pull request as #51.
  • Loading branch information
jensopetersen authored and wolfgangmm committed Jun 22, 2014
1 parent 4ee5f5e commit 6ee3270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eXide.js
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ eXide.app = (function() {
endOffset = startOffset + 10 - 1;
if (hitCount < endOffset)
endOffset = hitCount;
eXide.util.message("Found " + hitCount + " in " + elem.getAttribute("elapsed") + "s");
eXide.util.message("Query returned " + hitCount + " item(s) in " + elem.getAttribute("elapsed") + "s");
eXide.app.retrieveNext();
}
break;
Expand Down Expand Up @@ -1332,4 +1332,4 @@ eXide.app = (function() {
}
}
};
}());
}());

0 comments on commit 6ee3270

Please sign in to comment.