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); } ); },