1
0
Fork 0
forked from Simnation/Main
Main/resources/[jobs]/[mdt]/myEmergency/html/js/classes/delay.js
2025-08-14 13:21:51 +02:00

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);
}
}