From e27367b3cb81269e442b1128dcce8de1557dee55 Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Fri, 30 Jun 2023 05:57: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 e687158..a3d986b 100644 --- a/src/main/webapp/resources/js/base/base.js +++ b/src/main/webapp/resources/js/base/base.js @@ -178,7 +178,7 @@ var dialog = { } else { conf.content = container.replace(/{content}/g, conf.content); } - conf.timeout = 2200; + conf.timeout = ifEmpty(conf.timeout, 2000); this.open(conf); } };