bbs_w_post.ts 512 B

1234567891011121314
  1. function opennamu_change_comment(get_id : string): void {
  2. const input = document.querySelector('#opennamu_comment_select') as HTMLInputElement | null;
  3. if(input != null) {
  4. input.value = get_id;
  5. document.getElementById('opennamu_edit_textarea')?.focus();
  6. }
  7. }
  8. function opennamu_return_comment(): void {
  9. const input = document.querySelector('#opennamu_comment_select') as HTMLInputElement | null;
  10. if(input != null) {
  11. document.getElementById(input.value)?.focus();
  12. }
  13. }