외교부 틀 작성중. 재야의 외교 메시지는 항상 보이도록

This commit is contained in:
2019-01-26 03:31:04 +09:00
parent cc853a0632
commit 1bc08930be
7 changed files with 150 additions and 23 deletions
+6 -1
View File
@@ -135,6 +135,10 @@ function loadLetters(){
$(function(){
$('textarea.autosize').on('keydown keyup', function(){
$(this).height(1).height( $(this).prop('scrollHeight')+12 );
})
$('#submitLetter').click(submitLetter);
$('.respondAgree').click(function(){
return repondLetter(true);
@@ -143,10 +147,11 @@ $('.respondDisagree').click(function(){
return repondLetter(false);
});
/*
loadLetters()
.then(drawLetters, errUnknown)
.fail(function(reason){
alert(reason);
});
});*/
});