미디어위키:Common.js: 두 판 사이의 차이
Myheart3123 (토론 | 기여) 편집 요약 없음 |
Myheart3123 (토론 | 기여) 편집 요약 없음 |
||
7번째 줄: | 7번째 줄: | ||
const checkbox = $('#citizen-search__checkbox'); | const checkbox = $('#citizen-search__checkbox'); | ||
if (!checkbox.is(':checked')) { | if (!checkbox.is(':checked')) { | ||
$('#citizen-search__checkbox').prop('checked', true); | |||
$('#searchInput').focus(); | $('#searchInput').focus(); | ||
} | } |
2023년 9월 24일 (일) 09:29 판
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */ $(document).ready(function() { var pageTitle = mw.config.get('wgPageName'); if (pageTitle === '사용자:Myheart3123') { $('.mainpage-click-to-search').on('click', function() { const checkbox = $('#citizen-search__checkbox'); if (!checkbox.is(':checked')) { $('#citizen-search__checkbox').prop('checked', true); $('#searchInput').focus(); } }); } });