1
0
Fork 0
forked from Simnation/Main
Main/resources/[phone]/roadphone/public/custom_apps/app.js
2025-08-09 11:32:44 +02:00

13 lines
312 B
JavaScript

class CustomApp {
constructor() {
window.addEventListener('message', (event) => {
if (!event.data) return
const e = event.data
if (e.customevent === 'test') {
console.log(`TEST!`)
}
})
}
}
const customApp = new CustomApp()