Skip to content

Commit d9de214

Browse files
committed
Fixing the help dialog events
1 parent 3d6c018 commit d9de214

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)