forked from Simnation/Main
14 lines
No EOL
257 B
JavaScript
14 lines
No EOL
257 B
JavaScript
class FileSearch{
|
|
constructor(){
|
|
this.timeout = null
|
|
}
|
|
|
|
startTimer(value, element){
|
|
if(this.timeout != null){
|
|
clearTimeout(this.timeout);
|
|
}
|
|
this.timeout = setTimeout(function(){
|
|
SearchFiles(element)
|
|
},value);
|
|
}
|
|
} |