TheDesk Miho(ver.7)

This commit is contained in:
cutls
2018-02-04 23:56:31 +09:00
parent 108086c48a
commit df86d32b33
17 changed files with 229 additions and 24 deletions

View File

@@ -112,3 +112,9 @@ function emojiInsert(code, del) {
}
$("#textarea").focus();
}
//改行挿入
function brInsert(code) {
var now = $("#textarea").val();
$("#textarea").val(now + code);
$("#textarea").focus();
}