Skip to content

Commit

Permalink
minor refactoring, added submodule to master
Browse files Browse the repository at this point in the history
  • Loading branch information
achillesrasquinha committed Jul 10, 2017
1 parent b0ff51b commit 275c544
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions builder/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# module - builder
11 changes: 8 additions & 3 deletions candis/app/assets/js/bundle.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -16258,7 +16258,8 @@ var Menus = [{
if (name !== null) {
var action = (0, _AsynchronousAction.write)(name, _FileFormat2.default.PIPELINE);

dispatch(action);
dispatch(action // returns a promise
);
}
}
});
Expand All @@ -16267,7 +16268,9 @@ var Menus = [{
text: 'Open',
icon: _config2.default.routes.icons + '/envelope-open.png',
tooltip: 'Open an existing Pipeline',
onClick: function onClick(dispatch) {}
onClick: function onClick(dispatch) {
// TODO: create "Open" dialog and display.
}
}, {
text: 'Quit',
icon: _config2.default.routes.icons + '/quit.png',
Expand Down Expand Up @@ -16295,7 +16298,9 @@ var Menus = [{
text: 'Settings',
icon: _config2.default.routes.icons + '/settings.png',
tooltip: 'Open Settings View',
onClick: function onClick(dispatch) {}
onClick: function onClick(dispatch) {
// TODO: create "Settings" dialog and display.
}
}]
}, {
title: 'Help',
Expand Down
2 changes: 1 addition & 1 deletion candis/app/client/app/meta/Menus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Menus = [
if ( name !== null ) {
const action = write(name, FileFormat.PIPELINE)

dispatch(action) // returns promise
dispatch(action) // returns a promise
}
}
})
Expand Down

0 comments on commit 275c544

Please sign in to comment.