diff --git a/web/index.html b/web/index.html index 95eb61154..1ea7cf570 100755 --- a/web/index.html +++ b/web/index.html @@ -396,6 +396,9 @@
  • Verify Local Data
  • Ask tracker for more peers
  • +
  • +
  • Select All
  • +
  • Deselect All
  • diff --git a/web/javascript/transmission.js b/web/javascript/transmission.js index 9b33dd143..f5b36c9bc 100644 --- a/web/javascript/transmission.js +++ b/web/javascript/transmission.js @@ -183,7 +183,9 @@ Transmission.prototype = context_move_top: function() { tr.moveTop(); }, context_move_up: function() { tr.moveUp(); }, context_move_down: function() { tr.moveDown(); }, - context_move_bottom: function() { tr.moveBottom(); } + context_move_bottom: function() { tr.moveBottom(); }, + context_select_all: function() { tr.selectAll(); }, + context_deselect_all: function() { tr.deselectAll(); } }; // Set up the context menu