From d579cf35e5a944fd9c05438e06fae3fb8e4cdf8b Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Thu, 29 Jun 2023 17:05:00 +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 8c4ee226..8c995542 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); } };