chornoslyv
chornoslyv
@vsch Is there a list of TBD issues that would help flexmark-java to become compatible with 0.29 or 0.30 CommonMark spec?
Even if I increase height for `breakText` function by 1.25 it still doesn't work properly, because `breakText` measures `lh` only for `
Can be fixed with something like this: ``` var oldBreakText = joint.util.breakText; joint.util.breakText = function(text, size, styles, opt) { var height = size.height; // Call old break text, but without...
It's possible to use both `@Container` annotation with a parallel approach. You can implement `org.testcontainers.lifecycle.Startable` interface that would have several containers inside it. Like this: ``` public class ParallelContainers implements...
Same error. Something is wrong with minified version of lib.
Hi, @he0xff. I have the same problem. Did you manage to resolve it?
I found the answer! "blur" event is not invoked, because top window does not have a focus :) The fix is to add **target.focus();** call: var target = window; while...
I can see such defect only if I launch some application that doesn't have UI - in this case, "blur" event doesn't happen and it's ok. If your application has...
Hi, I've encountered this issue too, and I created minimal configuration that can be used to recreate it. It's reproducible with Gradle 6 and without Android. So, create a root...
Solution is actually the same as in #17 (focus top window and register "blur" event for it): function openUriWithHiddenFrame(uri, failCb, successCb) { var timeout = setTimeout(function () { handler.remove(); failCb();...