bbs_w_post.js 553 B

123456789101112131415
  1. function opennamu_change_comment(get_id) {
  2. var _a;
  3. var input = document.querySelector('#opennamu_comment_select');
  4. if (input !== null) {
  5. input.value = get_id;
  6. (_a = document.getElementById('opennamu_edit_textarea')) === null || _a === void 0 ? void 0 : _a.focus();
  7. }
  8. }
  9. function opennamu_return_comment() {
  10. var _a;
  11. var input = document.querySelector('#opennamu_comment_select');
  12. if (input !== null) {
  13. (_a = document.getElementById(input.value)) === null || _a === void 0 ? void 0 : _a.focus();
  14. }
  15. }