Daniel X Moore
Daniel X Moore
Thanks for the report, I'll look into it when I get a chance :+1:
Yeah, I think embedding in an iframe is a good way to go. The editor can communicate with the parent window when "Save" is clicked through `postMessage`. Let me know...
Here's a sample page using an iframe embed, let me know if it helps. ``` html window.addEventListener("message", receiveMessage, false); function receiveMessage(event) { var origin = event.origin; if (origin !== "https://danielx.net")...
@StoneCypher I love the fire in your heart! But why give the current maintainer a hard time? No one is owed anything. Why not maintain your own fork?
I've got my own fork as well, a single file, zero dependency implementation based on the original academic paper. I had originally tried using the 0.10.0 codebase, but even that...
RIP On Tue, Feb 18, 2020 at 5:59 AM John Haugeland wrote: > I despair that I have to fork this library, meaning none of the existing > consumers will...
What fixed it for me was using `encodeURIComponent` for my storage bucket path that had spaces in it. I assume that if the path isn't encoded properly it hits a...
GitHub auto-closed when I rebased so re-opening.
The interpolation test that was changed is interesting... It's inserting a string containing a single backslash into the RegExp ahead of an escaped `#`. The current behavior is to keep...
@ljluestc Are you a bot?