Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 1fabd9f

Browse files
committedMay 3, 2016
change component exports to defaults
1 parent 7adb49c commit 1fabd9f

File tree

100 files changed

+269
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+269
-176
lines changed
 

‎lib/atom/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ var Main = (function () {
99
function Main() {
1010
polyfills_1.default();
1111
store_1.default.dispatch(actions_1.setupVerify());
12-
this.root = root_1.Root.init();
12+
this.root = root_1.default.init();
1313
}
1414
Main.prototype.activate = function () {
1515
atom.workspace.addRightPanel({
1616
item: this.root,
1717
priority: 0,
1818
});
1919
subscriptions_1.onActivate();
20-
render_1.render(this.root);
20+
render_1.default(this.root);
2121
};
2222
Main.prototype.consumeStatusBar = function (statusBar) {
2323
this.statusBarTile = subscriptions_1.addToStatusBar(statusBar);

‎lib/atom/subscriptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function onActivate() {
2626
exports.onActivate = onActivate;
2727
function onDeactivate() {
2828
window.onresize = null;
29-
root_1.Root.unmount();
29+
root_1.default.unmount();
3030
subscriptions.dispose();
3131
}
3232
exports.onDeactivate = onDeactivate;

0 commit comments

Comments
 (0)