From 3a8f164ba9a6d771664e6978ee3b874a9a936b67 Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 31 Jan 2013 14:12:55 +0900 Subject: [PATCH] =?UTF-8?q?chr()=20=ED=95=A8=EC=88=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/common.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/js/common.js b/js/common.js index bdcf69845..bf3ca0000 100644 --- a/js/common.js +++ b/js/common.js @@ -432,6 +432,12 @@ function doc_write(cont) document.write(cont); } +// php chr() 대응 +function chr(code) +{ + return String.fromCharCode(code); +} + var win_password_lost = function(href) { window.open(href, "win_password_lost", "left=50, top=50, width=617, height=330, scrollbars=1"); }