1
0
Fork 0
forked from Simnation/Main
Main/resources/[jobs]/[mdt]/myEmergency/html/js/classes/delay.js

14 lines
257 B
JavaScript
Raw Normal View History

2025-08-14 13:21:51 +02:00
class FileSearch{
constructor(){
this.timeout = null
}
startTimer(value, element){
if(this.timeout != null){
clearTimeout(this.timeout);
}
this.timeout = setTimeout(function(){
SearchFiles(element)
},value);
}
}