This commit is contained in:
Jaybe
2025-03-05 14:10:06 +09:00
commit 7a77932344
1905 changed files with 122510 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
$(() => {
let eventPage = $('#tab_04');
if (eventPage.css('display') == 'block') {
let target = $('.formContents.submit');
target.on('click', () => {
try {
Android.makeAndroidEvent();
} catch (e) {
console.log("no Android class exist : ", e.message);
}
});
}
});