-
-
Notifications
You must be signed in to change notification settings - Fork 604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split out export and initial v5.0 work. #205
Conversation
example/split.js
Outdated
import { render } from 'react-dom'; | ||
import SplitAceEditor from '../src/split.jsx'; | ||
import AceEditor from '../src/ace.jsx'; | ||
import brace from 'brace'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'brace' is defined but never used.
example/split.js
Outdated
import React, { Component } from 'react'; | ||
import { render } from 'react-dom'; | ||
import SplitAceEditor from '../src/split.jsx'; | ||
import AceEditor from '../src/ace.jsx'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'AceEditor' is defined but never used.
Activating Open Collective
- Adds support for the split editor component. - Allows for the export of multiple child components in addition to ReactAce being default
71bd176
to
06aca13
Compare
example/index.js
Outdated
name: 'myTestCommand', | ||
bindKey: {win: 'Ctrl-W', mac: 'Command-W'}, | ||
exec: () => { | ||
console.log("this coammdb or whatever") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strings must use singlequote.
example/index.js
Outdated
name: 'myReactAceTest', | ||
bindKey: {win: 'Ctrl-M', mac: 'Command-M'}, | ||
exec: () => { | ||
console.log("this coammdb or whatever") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strings must use singlequote.
Ebert has finished reviewing this Pull Request and has found:
You can see more details about this review at https://ebertapp.io/github/securingsincity/react-ace/pulls/205. |
No description provided.