We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1010363 commit b70aabbCopy full SHA for b70aabb
package.json
@@ -92,6 +92,7 @@
92
"dependencies": {
93
"babel-eslint": "^7.0.0",
94
"babel-polyfill": "^6.16.0",
95
+ "bootstrap": "^4.0.0-alpha.4",
96
"codemirror": "^5.19.0",
97
"eslint-plugin-jsx-a11y": "^2.2.3",
98
"eslint-plugin-promise": "^3.0.0",
src/css/style.css
@@ -1 +1,2 @@
1
+@import '~bootstrap/dist/css/bootstrap.css';
2
@import '~codemirror/lib/codemirror.css';
src/index.js
@@ -65,7 +65,7 @@ module.exports = new class Application extends MatreshkaObject {
65
}
66
}, true)
67
.on({
68
- 'submit::sandbox': evt => {console.log(this.code)
+ 'submit::sandbox': evt => {
69
evt.preventDefault();
70
const results = lint(this.code, this.toJSON());
71
0 commit comments