add a couple of alerts to inform users of parts that aren't implemented yet

This commit is contained in:
Damien Churchill 2009-01-07 00:04:42 +00:00
commit 1bf2fb47b7

View file

@ -383,7 +383,8 @@ Deluge.UI = {
}); });
break; break;
case 'create': case 'create':
this.createWindow.show(); alert('Sorry, this hasn\'t been implemented yet.');
//this.createWindow.show();
break; break;
case 'add': case 'add':
this.addWindow.show(); this.addWindow.show();
@ -401,6 +402,8 @@ Deluge.UI = {
case 'preferences': case 'preferences':
this.prefsWindow.show(); this.prefsWindow.show();
break; break;
case 'connections':
alert('Sorry, this hasn\'t been implemented yet.');
default: default:
break; break;
} }