You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$("textarea").keydown(function(e){// Enter was pressed without shift keyif(e.keyCode==13&&!e.shiftKey){if(this.form)this.form.submit();elsee.preventDefault();returnfalse;}});
수정이 필요할 것 같습니다. ㅎㅎ
The text was updated successfully, but these errors were encountered:
모든 textarea에서 엔터를 치면 자동으로 submit이 되는 것 같습니다.
javascripts/admin/users.js의 다음 코드에서 일어나는 문제 같네요.
수정이 필요할 것 같습니다. ㅎㅎ
The text was updated successfully, but these errors were encountered: