We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b58489 commit 2a35eabCopy full SHA for 2a35eab
docs/src/ReactPlayground.js
@@ -107,6 +107,12 @@ const IS_MOBILE = typeof navigator !== 'undefined' && (
107
);
108
109
class CodeMirrorEditor extends React.Component {
110
+ constructor(props) {
111
+ super(props);
112
+
113
+ this.handleChange = this.handleChange.bind(this);
114
+ }
115
116
componentDidMount() {
117
if (IS_MOBILE || CodeMirror === undefined) {
118
return;
0 commit comments