Lukas
Lukas
I encountered the same issue with conda on MacOS. Short answer: We should not use `python3-config --ldflags` in the Makefile for linked compilations, but instead use the output from `python...
The above solution did not work for me in then end, while it was possible to compile lanms, importing it caused a fatal error. `Fatal Python error: PyThreadState_Get: no current...
I was trying to use hopscotch in a similar scenario, where content is loaded via AJAX, and the tour should target an element from that loaded content. While the `multipage`...
As a reference, I am using this structure to work around this limitation: ``` javascript var waitForElementVisible = function(element, callback) { var checkExist = setInterval(function() { $element = typeof element...
I have noticed a similar issue with a custom plugin we developed based on the `sketch-module-web-view` plugin template. It even causes it to crash at some point. After disabling the...
I encountered this too, and solved it by adding a new state property `error` that is set when an error is caught in the promise of the API which will...
Actually, it's enough (and cleaner) if you just fix the `build` script in `package.json` and remove the relative path for the `public-url` option, like so ``` "build": "parcel build --public-url...