diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-07-21 09:48:20 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-07-21 09:48:20 -0700 |
commit | 75bf701aa2b9e946ecb1e7f741c3a9b3ede43573 (patch) | |
tree | 85f4f2e6e50ae6bfe99d84a4e24a9ee5e34a44a2 /src/shell.html | |
parent | e935757662b408058bd686855066cb9a8d6ca9a1 (diff) |
nicer status text
Diffstat (limited to 'src/shell.html')
-rw-r--r-- | src/shell.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.html b/src/shell.html index c04ae84b..336f926d 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 ? 'Preparing: ' + (this.totalDependencies-left) + '/' + this.totalDependencies + '...' : 'All downloads complete.'); + Module.setStatus(left ? 'Preparing... (' + (this.totalDependencies-left) + '/' + this.totalDependencies + ')' : 'All downloads complete.'); } }; Module.setStatus('Downloading...'); |