Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

please upgrade react-tinymce with react 15+ #75

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
build/
node_modules/
npm-debug.log
75 changes: 75 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,78 @@
v0.8.9 - Tue, 06 Jun 2017 07:07:55 GMT
--------------------------------------

-


v0.8.3 - Fri, 16 Sep 2016 12:31:51 GMT
--------------------------------------

-


v0.8.2 - Fri, 16 Sep 2016 12:30:27 GMT
--------------------------------------

-


v0.8.1 - Tue, 23 Aug 2016 07:08:17 GMT
--------------------------------------

- [01adfa8](../../commit/01adfa8)
- [fixed] tinymce.4.2.7.min.js Uncaught TypeError: Cannot read property body
- [fixed] use the latest handler passed in by the props
- [Added] reset props which accepts a number ( any number ) and reset editor if its different from previous prop, this is necessary evil to prevent editor from reseting everytime


v0.7.2 - Mon, 22 Aug 2016 13:33:27 GMT
--------------------------------------

-


v0.6.9 - Mon, 22 Aug 2016 13:26:40 GMT
--------------------------------------

-


v0.6.8 - Mon, 22 Aug 2016 13:00:36 GMT
--------------------------------------

-


v0.6.7 - Mon, 22 Aug 2016 12:55:50 GMT
--------------------------------------

-


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

-


v0.6.5 - Mon, 22 Aug 2016 12:36:37 GMT
--------------------------------------

-


v0.6.4 - Mon, 22 Aug 2016 12:21:27 GMT
--------------------------------------

-


v0.6.3 - Mon, 22 Aug 2016 11:58:57 GMT
--------------------------------------

-


v0.5.1 - Thu, 21 Apr 2016 00:17:15 GMT
--------------------------------------

Expand Down
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# react-tinymce
# react-tinymce-editor

React TinyMCE component
React TinyMCE Editor component

## Installing

Expand All @@ -10,14 +10,14 @@ $ npm install react-tinymce

## Demo

http://instructure-react.github.io/react-tinymce/
http://abhirathore2006.github.io/react-tinymce-editor/

## Example

```js
import React from 'react';
import ReactDOM from 'react-dom';
import TinyMCE from 'react-tinymce';
import TinyMCE from 'react-tinymce-editor';

const App = React.createClass({
handleEditorChange(e) {
Expand All @@ -40,6 +40,10 @@ const App = React.createClass({

ReactDOM.render(<App/>, document.getElementById('container'));
```
## Note :

Do not use handler like this.someFunc.bind(this), this will result props compare to fail and it reset on every change.
Solution: Bind the func to this in constructor and just use this.someFunc in handler

## Dependency

Expand Down Expand Up @@ -67,7 +71,7 @@ To make sure the linter is happy and the functional tests run, execute:

`./node_modules/.bin/rackt test`

To release, you'll need to be an npm owner for react-tinymce, and already
To release, you'll need to be an npm owner for react-tinymce-editor, and already
have your machine currently authed with `npm adduser`

https://docs.npmjs.com/cli/adduser
Expand Down
Loading