1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-08-14 13:21:51 +02:00
parent 48a36209b5
commit 884f3df7cf
262 changed files with 223207 additions and 2 deletions

View file

@ -0,0 +1,14 @@
class FileSearch{
constructor(){
this.timeout = null
}
startTimer(value, element){
if(this.timeout != null){
clearTimeout(this.timeout);
}
this.timeout = setTimeout(function(){
SearchFiles(element)
},value);
}
}