Skip to content
This repository was archived by the owner on Aug 7, 2018. It is now read-only.

Commit 53bc53a

Browse files
committed
Changed the editable div to a textarea to test out IE 9 support.
1 parent 0fe149c commit 53bc53a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Example user template template
2+
### Example user template
3+
4+
# IntelliJ project files
5+
.idea
6+
*.iml
7+
out
8+
gen
9+
# Created by .ignore support plugin (hsz.mobi)

editor.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ MediumEditorComp = React.createClass({
1818
},
1919
render() {
2020
return(
21-
<div className="editable" contentEditable="true" spellCheck="true" role="textbox" aria-multiline="true"></div>
21+
<textarea className="editable" contentEditable="true" spellCheck="true" role="textbox" aria-multiline="true" />
2222
);
2323
}
2424
});

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Package.describe({
33
name: 'firrae:react-mediumeditor',
44
summary: 'MediumEditor wrapped up in a ReactJS component.',
5-
version: '0.1.4',
5+
version: '0.1.5',
66
git: 'https://github.com/firrae/react-mediumeditor',
77
documentation: 'README.md'
88
});

0 commit comments

Comments
 (0)