Underscore.js _.delay() to native setTimeout()

This commit is contained in:
djmaze 2020-07-22 20:28:25 +02:00
parent a82575a830
commit 43c92a82e6
29 changed files with 67 additions and 82 deletions

View file

@ -1,4 +1,3 @@
import _ from '_';
import ko from 'ko';
import { pInt, settingsSaveHelperSimpleFunction } from 'Common/Utils';
@ -42,7 +41,7 @@ class SecurityUserSettings {
onBuild() {
if (this.capaAutoLogout) {
_.delay(() => {
setTimeout(() => {
const f0 = settingsSaveHelperSimpleFunction(this.autoLogout.trigger, this);
this.autoLogout.subscribe(Remote.saveSettingsHelper('AutoLogout', pInt, f0));