From 087a5d841b81fc86e6e502e7f682a03712c7357b Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 22 Feb 2013 13:12:18 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/wrest.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/js/wrest.js b/js/wrest.js index d87f8c94a..11be188a1 100644 --- a/js/wrest.js +++ b/js/wrest.js @@ -350,20 +350,6 @@ function wrestInitialized() document.forms[i].oldsubmit = document.forms[i].onsubmit; } document.forms[i].onsubmit = wrestSubmit; - - // 이 부분은 CSS 로 대체를 합니다. github issue #282, 지운아빠 작업예정 - for (var j = 0; j < document.forms[i].elements.length; j++) { - // 필수 입력일 경우는 * 배경이미지를 준다. - if (document.forms[i].elements[j].getAttribute("required") != null || - regexp.test(document.forms[i].elements[j].className)) { - //if (regexp.test(document.forms[i].elements[j].className)) { - //document.forms[i].elements[j].style.backgroundColor = wrestFldDefaultColor; - //document.forms[i].elements[j].className = "wrest_required"; - document.forms[i].elements[j].style.backgroundImage = "url('"+g4_url+"/js/wrest.gif')"; - document.forms[i].elements[j].style.backgroundPosition = "top right"; - document.forms[i].elements[j].style.backgroundRepeat = "no-repeat"; - } - } } }