Krzysztof Krztoń
Krzysztof Krztoń
Hello, as a CKEditor 4 core team member, I would like to invite you to contribute to the official CKEditor 4 component for React available at https://github.com/ckeditor/ckeditor4-react. We appreciate the...
## Is this a bug report or feature request? (choose one) 🐞 Bug report ## 💻 Version of CKEditor CKEditor 5 (v10.0.1) ## 📋 Steps to reproduce case 1 1....
## Type of report Bug ## Provide detailed reproduction steps (if any) Extracted from https://github.com/ckeditor/ckeditor-dev/issues/2306#issuecomment-510122599. The main provider we are using (`IFramely`), but also regular embeds use scripts to enrich...
## Guidelines Please note that GitHub issues are only meant for bug reports/feature requests. If you have questions on how to use Streams, please ask on [StackOverflow](https://stackoverflow.com/questions/tagged/neo4j-streams) instead of creating...
## Are you reporting a feature or a bug? Bug ## [Check if the issue is already reported](http://docs.ckeditor.com/#!/guide/dev_issues_readme-section-avoid-duplicates) Extracted from #417. ## Provide detailed reproduction steps (if any) 1. Set...
## Type of report Docs ## Provide a description of requested docs changes https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-insertElement should link to `insertElement` event, while it links to itself:  The interesting thing is that...
## Type of report Failing tests ## Provide detailed reproduction steps (if any) Some PFW tests fails randomly, for example see ~https://travis-ci.org/ckeditor/ckeditor4/jobs/585973103~ https://github.com/ckeditor/ckeditor4/issues/3424#issuecomment-937711373. It looks like there might be some...
For example [`plugins/language/lang/en.js`](https://github.com/ckeditor/ckeditor-releases/blob/944d690c3d79c21efe3fce42b2ca231b08c4c909/plugins/language/lang/en.js) has the header while [`plugins/mathjax/lang/en.js`](https://github.com/ckeditor/ckeditor-releases/blob/944d690c3d79c21efe3fce42b2ca231b08c4c909/plugins/mathjax/lang/en.js) doesn't. It seems one line files don't get minified (so they are just copied from source) while longer files gets minified which...
I have noticed recently that CI is being unstable and some tests are failing from time to time. It seems to be the case of pipe tests mostly: ``` streams...
## Feature description In `v4` `.batch()` is a simple transform which groups chunks by a given number: ```js // input: [1,2,3,4,5,6,7,8,9,10] // batch(amount) .batch(2) -> [1,2], [3,4], [5,6], ... ```...