Jakub T. Jankiewicz
Jakub T. Jankiewicz
But if you want one end I can create a Codepen demo that will send a message to https://jcubic.pl/sysend.php but I'm not sure if this will help you in any...
It's because you need to have an iframe on both domains, There is open PR #30 but I think it would be a real security issue if the library allows...
Feature of a single proxy HTML file is tracked in #37. The code was moved to the devel branch because the solution in PR was not usable and I was...
It seems that the library stopped working on CodeSandbox. Just tried it to use in the ReactJS project. The module is loaded when the page has already been loaded and...
Sorry for the long delay. It seems that one file for Cross-domain communication is not needed for CodeSandbox since you can create a proxy HTML file on CodeSandbox. Here is...
You can get window location in JavaScript: ```javascript function geometry() { const left = window.screenX; const top = window.screenY; const width = window.innerWidth; const height = window.innerHeight; return { top,...
There is a `resize` event, but not a `move` event, so you need to use setInterval and check the position.
Do you mean `file://` protocol or something else? Does BroadcastChannel throw some kind of error when used from filesystem? If that's the case I can easily use localStorage as a...
I think that I can add this API: ```javascript sysend.setup({ mode: 'localStorage' }); // or sysend.useLocalStorage(); ```
New API added in version 1.14.0