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

Commit

Permalink
Textarea seems to change nothing in supporting IE9, there is somethin…
Browse files Browse the repository at this point in the history
…g more fundamental causing the site to not render. Reverting to an editable div.
  • Loading branch information
firrae committed Dec 5, 2015
1 parent 53bc53a commit d9687a1
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
25 changes: 25 additions & 0 deletions .versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
babel-compiler@5.8.24_1
babel-runtime@0.1.4
base64@1.0.4
caching-compiler@1.0.0
check@1.1.0
coffeescript@1.0.11
cosmos:browserify@0.8.4
ecmascript@0.1.6
ecmascript-runtime@0.2.6
ejson@1.0.7
firrae:react-mediumeditor@0.1.5
jquery@1.11.4
jsx@0.2.3
less@2.5.1
mediumeditor:mediumeditor@5.2.0
meteor@1.1.10
promise@0.5.1
random@1.0.5
react@0.14.1_1
react-meteor-data@0.2.3
react-runtime@0.14.1_1
react-runtime-dev@0.14.1
react-runtime-prod@0.14.1
tracker@1.0.9
underscore@1.0.4
3 changes: 1 addition & 2 deletions editor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ MediumEditorComp = React.createClass({
paste: this.props.paste,
keyboardCommands: this.props.keyboardCommands
});
console.log(editor);
},
render() {
return(
<textarea className="editable" contentEditable="true" spellCheck="true" role="textbox" aria-multiline="true" />
<div className="editable" contentEditable="true" spellCheck="true" role="textbox" aria-multiline="true"></div>
);
}
});
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name: 'firrae:react-mediumeditor',
summary: 'MediumEditor wrapped up in a ReactJS component.',
version: '0.1.5',
version: '0.1.7',
git: 'https://github.com/firrae/react-mediumeditor',
documentation: 'README.md'
});
Expand Down

0 comments on commit d9687a1

Please sign in to comment.