Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ad88cc0

Browse files
committedJun 1, 2015
Updating build
1 parent 8e9854e commit ad88cc0

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed
 

‎dist/react-codemirror.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ var React = (typeof window !== "undefined" ? window.React : typeof global !== "u
88
var CodeMirror = React.createClass({
99
displayName: 'CodeMirror',
1010

11+
propTypes: {
12+
onChange: React.PropTypes.func,
13+
options: React.PropTypes.object,
14+
path: React.PropTypes.string,
15+
value: React.PropTypes.string
16+
},
17+
1118
getInitialState: function getInitialState() {
1219
return {
1320
isFocused: false

‎dist/react-codemirror.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/Codemirror.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ var React = require('react');
66
var CodeMirror = React.createClass({
77
displayName: 'CodeMirror',
88

9+
propTypes: {
10+
onChange: React.PropTypes.func,
11+
options: React.PropTypes.object,
12+
path: React.PropTypes.string,
13+
value: React.PropTypes.string
14+
},
15+
916
getInitialState: function getInitialState() {
1017
return {
1118
isFocused: false

0 commit comments

Comments
 (0)
Please sign in to comment.