fix merge conflicts

This commit is contained in:
mathuramg 2016-07-13 12:07:05 -04:00
commit 0d9c3a29c8
2 changed files with 5 additions and 3 deletions

View File

@ -12,7 +12,8 @@ class Editor extends React.Component {
lineNumbers: true,
styleActiveLine: true,
inputStyle: 'contenteditable',
mode: 'javascript'
mode: 'javascript',
lineWrapping: true
});
this._cm.on('change', () => { // eslint-disable-line
// this.props.updateFileContent('sketch.js', this._cm.getValue());

View File

@ -6,12 +6,13 @@
}
.editor-holder {
flex-grow: 1;
flex: 1 0 0;
max-width: 45%;
height: 100%;
}
.preview-frame {
flex-grow: 1;
flex: 1 0 0;
}
.toolbar {