angezid
angezid
> There is a backward-compatibility issue I noticed when I dropped this change into my project: it now insists on g or y flags for the regex The first idea...
In my previous versions there was code which do this: ``` js if (this.opt.acrossElements && !regexp.global && !regexp.sticky) { let flags = 'g' + (regexp.flags ? regexp.flags : ''); regexp...
@julmot, I implement what I want, even more than. But how to test `wrapMatchGroupsD` and `separateGroupsD` methods? With PhantomJS it's not possible to test even RegExp pattern parser? Currently, I...
I also have doubts this PR will revive this repo.
He is probably very busy. Version 9.0.0 still not released [https://github.com/julmot/mark.js/issues/457](https://github.com/julmot/mark.js/issues/457).
I ended up with JavaScript code: ``` js function getSelection() { const root = editor.getRootNode(); if(root.nodeType == Node.DOCUMENT_FRAGMENT_NODE) { try { return root.getSelection(); } catch(e) { } } return window.getSelection();...
I solved `bower` dependency by uninstalling `karma-jasmine-jquery` package (it uninstalled `bower` and all its dependencies) and installed `@metahub/karma-jasmine-jquery`.