Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Prevent multiple search
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Aug 25, 2016
1 parent 250b420 commit afe8e12
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -703,6 +703,9 @@ Class.create("SearchEngine", AjxpPane, {
* Perform search
*/
search : function(limit, skipClear){
if(this._state === 'searching' || this._state === 'interrupt'){
return;
}
if(!limit){
this.currentLimitDefault = true;
limit = 100;
Expand Down

0 comments on commit afe8e12

Please sign in to comment.