bbs_w_post.js 454 B

12345678910111213141516
  1. "use strict";
  2. function opennamu_change_comment(get_id) {
  3. const input = document.querySelector('#opennamu_comment_select');
  4. if(input !== null) {
  5. input.value = get_id;
  6. document.getElementById('opennamu_edit_textarea')?.focus();
  7. }
  8. }
  9. function opennamu_return_comment() {
  10. const input = document.querySelector('#opennamu_comment_select');
  11. if(input !== null) {
  12. document.getElementById(input.value)?.focus();
  13. }
  14. }