aboutsummaryrefslogtreecommitdiff
path: root/src/shell.html
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-06-18 10:53:45 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-06-18 10:53:45 -0700
commit6200c758e323e3d26f67b08ddf7e8a69ec462599 (patch)
tree570be0366f4c900dc207ce151c626dbb501fead4 /src/shell.html
parent85252a46c2dabc8a41720390d1198b5260d16aa9 (diff)
write preparing, not downloading when preparing downloaded data
Diffstat (limited to 'src/shell.html')
-rw-r--r--src/shell.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.html b/src/shell.html
index a199980e..c04ae84b 100644
--- a/src/shell.html
+++ b/src/shell.html
@@ -65,7 +65,7 @@
totalDependencies: 0,
monitorRunDependencies: function(left) {
this.totalDependencies = Math.max(this.totalDependencies, left);
- Module.setStatus(left ? 'Downloading: ' + (this.totalDependencies-left) + '/' + this.totalDependencies + '...' : 'All downloads complete.');
+ Module.setStatus(left ? 'Preparing: ' + (this.totalDependencies-left) + '/' + this.totalDependencies + '...' : 'All downloads complete.');
}
};
Module.setStatus('Downloading...');