(trunk web) fix typo

This commit is contained in:
Kevin Glowacz 2009-07-28 05:23:30 +00:00
parent da9e099cf5
commit be1e99ab3f
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ Transmission.prototype =
var tr = this; var tr = this;
var async = false; var async = false;
this.loadDaemonPrefs( async ); this.loadDaemonPrefs( async );
this.initalizeAllTorrents(); this.initializeAllTorrents();
this.togglePeriodicRefresh( true ); this.togglePeriodicRefresh( true );
}, },
@ -1205,7 +1205,7 @@ Transmission.prototype =
} ); } );
}, },
initalizeAllTorrents: function(){ initializeAllTorrents: function(){
var tr = this; var tr = this;
this.remote.getInitialDataFor( null ,function(torrents) { tr.addTorrents(torrents); } ); this.remote.getInitialDataFor( null ,function(torrents) { tr.addTorrents(torrents); } );
}, },