# HG changeset patch # User Laurens Holst # Date 1274014138 -7200 # Node ID 657b465caaa2b68b370be0567cae9f553433310c # Parent 1de4a7a49d94e81f20a8aab077b1eb4c4d5e3d83 Download::downloads property is used as a hash object, not array. diff -r 1de4a7a49d94 -r 657b465caaa2 static/js/download.js --- a/static/js/download.js Sun May 16 14:47:03 2010 +0200 +++ b/static/js/download.js Sun May 16 14:48:58 2010 +0200 @@ -1,5 +1,5 @@ function Download() { - this.downloads = new Array(); + this.downloads = {}; } Download.prototype = {