Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4c14ed2
tinymce-editor bugfixes
abhirathore2006 Aug 22, 2016
e79a9e0
tinymce-editor bugfixes -deploy
abhirathore2006 Aug 22, 2016
2e1b93e
changed location in example file
abhirathore2006 Aug 22, 2016
0193be1
0.6.1 build
abhirathore2006 Aug 22, 2016
813a44d
added npm-debug.log to git ignore
abhirathore2006 Aug 22, 2016
d815fe3
added seld as author in package.json
abhirathore2006 Aug 22, 2016
cf76fae
release v0.6.3
abhirathore2006 Aug 22, 2016
0b90a1b
release v0.6.4
abhirathore2006 Aug 22, 2016
f415cb9
release v0.6.5
abhirathore2006 Aug 22, 2016
998bce7
release v0.6.6
abhirathore2006 Aug 22, 2016
00787a8
release v0.6.7
abhirathore2006 Aug 22, 2016
42221a9
release v0.6.8
abhirathore2006 Aug 22, 2016
f6ffe7d
release v0.6.9
abhirathore2006 Aug 22, 2016
f9d54e2
release v0.7.2
abhirathore2006 Aug 22, 2016
01adfa8
[fixed] tinymce.4.2.7.min.js Uncaught TypeError: Cannot read property…
abhirathore2006 Aug 23, 2016
48beef2
[Added] extra note to README.md regarding bind methods in Handler
abhirathore2006 Aug 23, 2016
e841eb5
release v0.8.1
abhirathore2006 Aug 23, 2016
c930531
Update CHANGELOG.md
abhirathore2006 Aug 23, 2016
08f390e
Update CHANGELOG.md
abhirathore2006 Aug 23, 2016
9ff011a
release v0.8.2
abhirathore2006 Sep 16, 2016
0f24d42
Merge branch 'master' of github.com:abhirathore2006/react-tinymce-editor
abhirathore2006 Sep 16, 2016
e7536af
release v0.8.3
abhirathore2006 Sep 16, 2016
6969a7a
moved lodash to peer dependency
abhirathore2006 Mar 10, 2017
602e3ae
changed version
abhirathore2006 Mar 10, 2017
07d4285
changed version
abhirathore2006 Mar 10, 2017
771bb71
fixed version
abhirathore2006 Mar 10, 2017
aaaa378
lodash changes
abhirathore2006 Mar 10, 2017
4302cd3
moved lodash to dependency
abhirathore2006 Mar 10, 2017
c7428c5
changed entry point to build
abhirathore2006 Mar 10, 2017
95b618e
fixed rackt version
abhirathore2006 Jun 6, 2017
2e09f59
release v0.8.9
abhirathore2006 Jun 6, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
release v0.6.7
  • Loading branch information
abhirathore2006 committed Aug 22, 2016
commit 00787a8552854909f811f4c65ca326bab0038a85
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v0.6.7 - Mon, 22 Aug 2016 12:55:50 GMT
--------------------------------------

-


v0.6.6 - Mon, 22 Aug 2016 12:46:21 GMT
--------------------------------------

Expand Down
9 changes: 5 additions & 4 deletions dist/react-tinymce-editor.js

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

2 changes: 1 addition & 1 deletion dist/react-tinymce-editor.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react-tinymce-editor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react-tinymce-editor.min.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions lib/components/TinyMCE.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ const TinyMCE = React.createClass({
},

componentDidUpdate(prevProps) {
if (!isEqual(this.props.id, prevProps.id)) {
this.id = this.props.id;
}
if (!isEqual(this.props.config, prevProps.config)) {
this._init(this.props.config, this.props.content);
}
if (!isEqual(this.props.id, prevProps.id)) {
this.id = this.props.id;
}
},

shouldComponentUpdate(nextProps) {
Expand Down Expand Up @@ -138,7 +138,8 @@ const TinyMCE = React.createClass({
},

_remove() {
tinymce.EditorManager.execCommand('mceRemoveEditor', true, this.id);
tinymce.get(this.id).remove();
// EditorManager.execCommand('mceRemoveEditor', true, this.id);
this._isInit = false;
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-tinymce-editor",
"version": "0.6.6",
"version": "0.6.7",
"description": "React TinyMCE Editor component",
"main": "lib/main.js",
"scripts": {
Expand Down