]> granicus.if.org Git - transmission/commitdiff
(trunk web) fix typo
authorKevin Glowacz <kevin@glowacz.info>
Tue, 28 Jul 2009 05:23:30 +0000 (05:23 +0000)
committerKevin Glowacz <kevin@glowacz.info>
Tue, 28 Jul 2009 05:23:30 +0000 (05:23 +0000)
web/javascript/transmission.js

index b61e6817ecd71b2a47b81f6e671180438fa1dbfc..8273ecd2f4cf07675b4f984f555707b6adef4772 100644 (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); } );
        },