Skip to content

Commit

Permalink
New version 3.1.17. Read more https://github.com/xdan/jodit/releases/…
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Jan 19, 2018
1 parent 3507ade commit 8215e32
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/jodit.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/jodit.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jodit",
"version": "3.1.16",
"version": "3.1.17",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Jodit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export class Jodit extends Component {
this.setReadOnly(true);
}

this.events.fire('afterInit');
this.events.fire('afterInit', this);
}

__plugins: {[key: string]: JoditPlugin} = {};
Expand Down
1 change: 1 addition & 0 deletions src/modules/Toolbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@ export class Toolbar extends Component{

if (control.iconURL && container) {
container.style.backgroundImage = 'url(' + control.iconURL + ')'
container.style.display = 'inline-block'
}
}
/**
Expand Down

0 comments on commit 8215e32

Please sign in to comment.