Add move torrents option to context menu

This commit is contained in:
John Furrow
2016-02-28 19:24:59 -08:00
parent 7e3403238e
commit 635b30afeb
27 changed files with 574 additions and 74 deletions

View File

@@ -4,12 +4,13 @@ export default class BaseStore extends EventEmitter {
constructor() {
super();
this.dispatcherID = null;
this.on('uncaughtException', this.handleError);
this.setMaxListeners(20);
}
handleError(error) {
console.error(error);
console.trace(error);
}
listen(event, callback) {