From be1e99ab3f0b911e72b9738f92b099b94bf5131e Mon Sep 17 00:00:00 2001 From: Kevin Glowacz Date: Tue, 28 Jul 2009 05:23:30 +0000 Subject: [PATCH] (trunk web) fix typo --- web/javascript/transmission.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/javascript/transmission.js b/web/javascript/transmission.js index b61e6817e..8273ecd2f 100644 --- a/web/javascript/transmission.js +++ b/web/javascript/transmission.js @@ -115,7 +115,7 @@ Transmission.prototype = var tr = this; var async = false; this.loadDaemonPrefs( async ); - this.initalizeAllTorrents(); + this.initializeAllTorrents(); this.togglePeriodicRefresh( true ); }, @@ -1205,7 +1205,7 @@ Transmission.prototype = } ); }, - initalizeAllTorrents: function(){ + initializeAllTorrents: function(){ var tr = this; this.remote.getInitialDataFor( null ,function(torrents) { tr.addTorrents(torrents); } ); },