1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 13:16:53 +00:00

(trunk web) fix typo

This commit is contained in:
Kevin Glowacz 2009-07-28 05:23:30 +00:00
parent da9e099cf5
commit be1e99ab3f

View file

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