Skip to content

Commit 50d1cd0

Browse files
committed
style fix for atom 1.9, update changelog
1 parent e6d8e20 commit 50d1cd0

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.10.1] - WIP
6+
- style fix for Atom 1.9
7+
8+
59
## [0.10.0] - 2016-06-12
610
- throttle saves at 800ms
711
- extract common modules into [core-coderoad](https://github.com/coderoad/core-coderoad) to share with the new [tutorial builder](https://github.com/coderoad/builder-coderoad)

lib/components/Page/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var TasksComplete_1 = require('./TasksComplete');
2424
var core_coderoad_1 = require('core-coderoad');
2525
var styles = {
2626
page: {
27+
height: '100%',
2728
width: '100%',
2829
overflowY: 'scroll',
2930
},

src/components/Page/index.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {pageSelector, taskProgressSelector} from 'core-coderoad';
1212

1313
const styles = {
1414
page: {
15+
height: '100%',
1516
width: '100%',
1617
overflowY: 'scroll',
1718
},

src/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ class Main {
2424
item: this.side,
2525
priority: 0,
2626
});
27-
2827
// activate subscriptions
2928
onActivate(store);
30-
3129
// render React component
3230
ReactDOM.render(SideRoot(store), this.side);
3331
}

0 commit comments

Comments
 (0)