From d6c1db86cda76983b99e11fe0ac30411fe91efac Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 4 Jun 2012 00:28:15 +0000 Subject: [PATCH] #4833 regression: Select / Deselect transfers option missing --- web/index.html | 3 +++ web/javascript/transmission.js | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 -- 2.40.0