From 56872fc63a842d864dfb49313eb7d87d697cbea8 Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Tue, 4 Jun 2024 17:02:06 +0900 Subject: [PATCH] =?UTF-8?q?dialog=20timeout=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/js/base/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/resources/js/base/base.js b/src/main/webapp/resources/js/base/base.js index 370f610..522a4fe 100644 --- a/src/main/webapp/resources/js/base/base.js +++ b/src/main/webapp/resources/js/base/base.js @@ -190,7 +190,7 @@ var dialog = { } else { conf.content = container.replace(/{content}/g, conf.content); } - conf.timeout = ifEmpty(conf.timeout, 2000); + conf.timeout = ifEmpty(conf.timeout, dialog.timeout); this.open(conf); } };