Skip to content

Commit

Permalink
Fixed xdan#336
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Feb 9, 2020
1 parent bb3696d commit f3244bc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 3.3.22

### Feature
* Added Dom.isTag method
```js
const editor = Jodit.make('#editor');

const a = editor.create.inside.element('a');
const br = document.createElement('br');

Jodit.modules.Dom.isTag(a, 'a') // true
Jodit.modules.Dom.isTag(br, 'br') // true
```

## 3.3.19
### BugFix
* Fixed a lots bugs inside `link` plugin
Expand Down

0 comments on commit f3244bc

Please sign in to comment.