-
-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
Discovered not working code example:
https://nativephp.com/docs/desktop/2/digging-deeper/broadcasting#listening-with-javascript
example provided:
window.addEventListener('native:init', () => {
Native.on('Native\\Desktop\\Events\\Windows\\WindowBlurred', (payload, event) => {
//
})
//
})Following steps to reproduce:
in foo.blade.php: @vite(['resources/js/app.js'])
test code in app.js:
console.info('Blur Test!');
Native.on('Native\\Desktop\\Events\\Windows\\WindowBlurred', (payload, event) => {
console.info('work!');
});
window.addEventListener('native:init', () => {
Native.on('Native\\Desktop\\Events\\Windows\\WindowBlurred', (payload, event) => {
console.info('does not work!');
})
})version: nativephp/desktop: "2.0.2"
Metadata
Metadata
Assignees
Labels
No labels
