From 8755206dacd620ec8e3c0ab7f8b665493a81a4aa Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Sat, 15 Oct 2011 04:35:20 +0000 Subject: [PATCH] (trunk web) #4564 "web client doesn't run in IE7" -- fixed. --- web/javascript/formatter.js | 2 +- web/javascript/remote.js | 2 +- web/javascript/torrent-row.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/javascript/formatter.js b/web/javascript/formatter.js index 4503e33ce..d05e43477 100644 --- a/web/javascript/formatter.js +++ b/web/javascript/formatter.js @@ -302,6 +302,6 @@ Transmission.fmt = (function() } } return formattedFlags.join(''); - }, + } } })(); diff --git a/web/javascript/remote.js b/web/javascript/remote.js index 3c048d25b..f4d29caac 100644 --- a/web/javascript/remote.js +++ b/web/javascript/remote.js @@ -113,7 +113,7 @@ TransmissionRemote.prototype = var o = { method: 'torrent-get', 'arguments': { - 'fields': fields, + 'fields': fields } }; if (torrentIds) diff --git a/web/javascript/torrent-row.js b/web/javascript/torrent-row.js index 7ca5ef365..2a8096cea 100644 --- a/web/javascript/torrent-row.js +++ b/web/javascript/torrent-row.js @@ -376,5 +376,5 @@ TorrentRow.prototype = }, getTorrentId: function() { return this.getTorrent().getId(); - }, + } };