Skip to content

Commit 45c7a4f

Browse files
committed
Merge pull request #381 from 10gen/fix-help-dialog
Fixing the help dialog events
2 parents 80c8be4 + d9de214 commit 45c7a4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ var Application = View.extend({
169169
url += '/' + id;
170170
}
171171

172-
ipc.call('app:open-url', id);
172+
ipc.call('app:show-help-window', id);
173173
},
174174
onClientReady: function() {
175175
debug('Client ready! Took %dms to become readable',

src/main/window-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ function showAboutDialog() {
177177
});
178178
}
179179

180-
function showHelpWindow(id) {
180+
function showHelpWindow(win, id) {
181181
if (helpWindow) {
182182
helpWindow.focus();
183183
if (_.isString(id)) {

0 commit comments

Comments
 (0)