Manuel Dell'Elce
Manuel Dell'Elce
I've checked the substack editor. The dropdown closes on mousedown, thus the click never registers. Code below works: ```javascript buttonEl.addEventListener('mousedown', this.handleCreateGistClick); ``` The `handleCreateGistClick` needs to be adapted for substack...
See https://github.com/Maluen/code-medium/pull/12 and https://github.com/Maluen/code-medium/pull/12/commits/465f7c2c9135e08392dd5df47fea3627be34c45c I've also changed `insertGistIntoPost` to simulate a `paste` event with the gist URL. For gist editing, I've noticed that they are not embedding the IFRAME with...
https://github.com/Maluen/code-medium/pull/12/commits/3e105897929aecb69f3b4caae039e5520cff5061 - Added `dblclick` handler to trigger edit UI when double clicking on gists. - Added code to delete a gist (`deleteGistIntoPost') The main thing still left to do in...
Yes, the update wasn't working in my tests because of the different URL structure. Nice find on that! About the unicode warning, that is indeed very annoying, I don't think...
>Thus, I have contacted substack support reporting this bug. Let's see what they say. Cool, let's hope for a quick solution. >Aside from that, is there any feature/behavior left to...
Code restructured here: https://github.com/Maluen/code-medium/pull/12/commits/0632335bbaa201e06b05771818ca8252ddd88bf2
Could be the content script that doesn't load in that specific url, although file:// is whitelisted, you can set the allowed urls in the content_scripts "matches" property in the manifest.json...
Not sure on the changes you made to the original Backbone Debugger core, but on it the second refresh is needed to reinject the agent on-the-fly so to keep debug...
Got it. Happy to hear if there are alternative methods for keeping debug mode, since injected scripts aren't reinjected automatically on subsequent reloads and this does not seem configurable: https://developer.chrome.com/extensions/devtools_inspectedWindow#method-reload...
I'm still seeing unicode warnings for most gists on substack. I just tried to create a new gist (directly from github) with only the word "test" inside, no spaces, no...