Focus on name input area is active when a new item is created

This commit is contained in:
benguozakinci@gmail.com
2021-07-30 18:49:30 +03:00
parent 1e128aee96
commit db8507b856
4 changed files with 25 additions and 4 deletions

View File

@ -15,4 +15,14 @@ function getQueryVariable(variable) {
return(false);
}
export {getQueryVariable}
function promiseTimeout(time) {
return new Promise(function(resolve,reject) {
setTimeout(function(){
resolve(time);
}, time);
});
};
export {getQueryVariable, promiseTimeout}