Skip to content

Commit b70aabb

Browse files
committed
feat: Add Bootstrap 4
1 parent 1010363 commit b70aabb

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@
9292
"dependencies": {
9393
"babel-eslint": "^7.0.0",
9494
"babel-polyfill": "^6.16.0",
95+
"bootstrap": "^4.0.0-alpha.4",
9596
"codemirror": "^5.19.0",
9697
"eslint-plugin-jsx-a11y": "^2.2.3",
9798
"eslint-plugin-promise": "^3.0.0",

src/css/style.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
@import '~bootstrap/dist/css/bootstrap.css';
12
@import '~codemirror/lib/codemirror.css';

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = new class Application extends MatreshkaObject {
6565
}
6666
}, true)
6767
.on({
68-
'submit::sandbox': evt => {console.log(this.code)
68+
'submit::sandbox': evt => {
6969
evt.preventDefault();
7070
const results = lint(this.code, this.toJSON());
7171

0 commit comments

Comments
 (0)