tag when user lefts cursor inside
+```
+
+#### :bug: Bug Fix
+
+- Hide popup after deleting target node with key press.
+- [image-editor : onChangeSizeInput #663](https://github.com/xdan/jodit/issues/663)
+- [image-editor : switcher #662](https://github.com/xdan/jodit/issues/662) Replace buttons to switcher
+- [Error from ESlint, please fix it #658](https://github.com/xdan/jodit/issues/658)
+- [Support Mobile platform’s slide to type feature. #654](https://github.com/xdan/jodit/issues/654)
+- [The Jodit eraser tool doesn't work for tags #652](https://github.com/xdan/jodit/issues/652)
+- [Links at the end of editor after unlink #648](https://github.com/xdan/jodit/issues/648)
+
+## 3.6.7
+
+#### :bug: Bug Fix
+
+- When deleting a file via the context menu - the list of files was not updated.
+
+#### :rocket: New Feature
+
+- Added the ability to open a file browser and any dialog in a new window. To do this, you need to define
+ the `ownerWindow` field. For example, this can be done so that the file browser opens in a separate popup window.
+
+```js
+const editor = Jodit.make('#editor', {
+ uploader: {
+ url: 'https://xdsoft.net/jodit/connector/index.php?action=fileUpload'
+ },
+ filebrowser: {
+ ajax: {
+ url: 'https://xdsoft.net/jodit/connector/index.php'
+ }
+ }
+});
+
+// Rewrite default filebrowser instance
+editor.e.on('getInstanceFileBrowser', options => {
+ const win = window.open(
+ 'about:blank',
+ 'File Browser',
+ 'location=0,menubar=0,status=0,toolbar=0,titlebar=0,width=700,height=500'
+ );
+
+ win.document.open();
+ // Need append css for Jodit
+ win.document.write(
+ '
File Browser!'
+ );
+ win.document.close();
+
+ const browser = new Jodit.modules.FileBrowser({
+ ownerWindow: win, // set window which will be used for opening
+ headerButtons: [], // disable buttns - close and fullscreen
+ fullsize: true,
+ events: {
+ beforeOpen: () => {
+ win.focus();
+ },
+ afterClose: () => {
+ win.close();
+ }
+ },
+ ajax: options.ajax
+ });
+
+ browser.noCache = true; // Becouse window can be closed - create instance on every getInstanceFileBrowser
+
+ return browser;
+});
+```
+
+## 3.6.5
+
+#### :boom: Breaking Change
+
+- Removed options: `useIframeResizer`, `useImgResizer`, `useTableResizer` from `resizer` plugin. Instead,
+ added `allowResizeTags`.
+
+```js
+Config.prototype.allowResizeTags = ['img', 'iframe', 'table', 'jodit'];
+```
+
+## 3.6.2
+
+#### :bug: Bug Fix
+
+- [Error when resizing tables and tables cells](https://github.com/xdan/jodit/issues/611)
+- [Image and video resizing in the table does not work correctly](https://github.com/xdan/jodit/issues/528)
+- [The link popup closes when trying to add it to an image inside a table. #524](https://github.com/xdan/jodit/issues/524)
+- Fixed a bug when command `emptyTable` didn't work.
+
+## 3.6.1
+
+#### :bug: Bug Fix
+
+- [