From: Mitchell Livingston Date: Mon, 4 Jun 2012 00:28:15 +0000 (+0000) Subject: #4833 regression: Select / Deselect transfers option missing X-Git-Tag: 2.60~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6c1db86cda76983b99e11fe0ac30411fe91efac;p=transmission #4833 regression: Select / Deselect transfers option missing --- 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