have the help button open the user guide on the wiki

This commit is contained in:
Damien Churchill 2009-09-15 07:28:09 +00:00
parent dd519f936c
commit cd0f4f69fb
1 changed files with 4 additions and 1 deletions

View File

@ -103,7 +103,6 @@ Copyright:
},'->',{
id: 'help',
cls: 'x-btn-text-icon',
disabled: true,
icon: '/icons/help.png',
text: _('Help'),
handler: this.onHelpClick,
@ -157,6 +156,10 @@ Copyright:
Deluge.ConnectionManager.show();
},
onHelpClick: function() {
window.open('http://dev.deluge-torrent.org/wiki/UserGuide');
},
onPreferencesClick: function() {
Deluge.Preferences.show();
},