From 35ac787457dd9187b73d371c67900cd48e575be5 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 13 Oct 2010 19:28:55 +0000 Subject: [PATCH] (trunk web) #3630 "add a link to the Transmission homepage from the web client" -- added. --- web/index.html | 3 +++ web/javascript/transmission.js | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/web/index.html b/web/index.html index 560d8167a..c486ce82d 100755 --- a/web/index.html +++ b/web/index.html @@ -466,6 +466,9 @@
  • Compact View
  • +
  • +
  • Transmission Home
  • +
  • Transmission Tip Jar
  • diff --git a/web/javascript/transmission.js b/web/javascript/transmission.js index 5285c8587..b62a17687 100644 --- a/web/javascript/transmission.js +++ b/web/javascript/transmission.js @@ -1118,6 +1118,12 @@ Transmission.prototype = $element.deselectMenuItem(); this.refreshDisplay( ); } + else if ($element[0].id == 'homepage') { + window.open('http://www.transmissionbt.com/'); + } + else if ($element[0].id == 'tipjar') { + window.open('http://www.transmissionbt.com/donate.php'); + } break; // Limit the download rate -- 2.40.0