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

Commit d9687a1

Browse files
committed
Textarea seems to change nothing in supporting IE9, there is something more fundamental causing the site to not render. Reverting to an editable div.
1 parent 53bc53a commit d9687a1

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.versions

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
babel-compiler@5.8.24_1
2+
babel-runtime@0.1.4
3+
base64@1.0.4
4+
caching-compiler@1.0.0
5+
check@1.1.0
6+
coffeescript@1.0.11
7+
cosmos:browserify@0.8.4
8+
ecmascript@0.1.6
9+
ecmascript-runtime@0.2.6
10+
ejson@1.0.7
11+
firrae:react-mediumeditor@0.1.5
12+
jquery@1.11.4
13+
jsx@0.2.3
14+
less@2.5.1
15+
mediumeditor:mediumeditor@5.2.0
16+
meteor@1.1.10
17+
promise@0.5.1
18+
random@1.0.5
19+
react@0.14.1_1
20+
react-meteor-data@0.2.3
21+
react-runtime@0.14.1_1
22+
react-runtime-dev@0.14.1
23+
react-runtime-prod@0.14.1
24+
tracker@1.0.9
25+
underscore@1.0.4

editor.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ MediumEditorComp = React.createClass({
1414
paste: this.props.paste,
1515
keyboardCommands: this.props.keyboardCommands
1616
});
17-
console.log(editor);
1817
},
1918
render() {
2019
return(
21-
<textarea className="editable" contentEditable="true" spellCheck="true" role="textbox" aria-multiline="true" />
20+
<div className="editable" contentEditable="true" spellCheck="true" role="textbox" aria-multiline="true"></div>
2221
);
2322
}
2423
});

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.5',
5+
version: '0.1.7',
66
git: 'https://github.com/firrae/react-mediumeditor',
77
documentation: 'README.md'
88
});

0 commit comments

Comments
 (0)