미디어위키:Gadget-SysopPresentCheck.js: 두 판 사이의 차이
잔글편집 요약 없음 |
잔글편집 요약 없음 |
||
4번째 줄: | 4번째 줄: | ||
**/ | **/ | ||
function runJobs () { | function runJobs () { | ||
fetch("https://dev.libertygame.work/index.php/%EB%A6%AC%EB%B2%84%ED%8B%B0%EA%B2%8C%EC%9E%84:%EA%B4%80%EB%A6%AC%EB%8B%A8/%EC%B6%9C%EC%84%9D%EC%B2%B4%ED%81%AC?action=raw").then(function (response) {return response.text();}).then( | |||
function (result){ | |||
console.log(result); | |||
} | |||
); | |||
} | } | ||
$(runJobs); | $(runJobs); |
2024년 5월 14일 (화) 15:10 판
/** 관리단 출석체크 시스템
* [[리버티게임:관리단/출석체크]]와 동기화됨
* 작성자: [[사용자:Senouis]]
**/
function runJobs () {
fetch("https://dev.libertygame.work/index.php/%EB%A6%AC%EB%B2%84%ED%8B%B0%EA%B2%8C%EC%9E%84:%EA%B4%80%EB%A6%AC%EB%8B%A8/%EC%B6%9C%EC%84%9D%EC%B2%B4%ED%81%AC?action=raw").then(function (response) {return response.text();}).then(
function (result){
console.log(result);
}
);
}
$(runJobs);