aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/library_browser.js4
-rw-r--r--src/shell.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/library_browser.js b/src/library_browser.js
index a7a4a439..9a959cb8 100644
--- a/src/library_browser.js
+++ b/src/library_browser.js
@@ -29,9 +29,9 @@ mergeInto(LibraryManager.library, {
var expected = Browser.mainLoop.expectedBlockers;
if (remaining) {
if (remaining < expected) {
- Module['setStatus']('Please wait.. (' + (expected - remaining) + '/' + expected + ')');
+ Module['setStatus']('Please wait... (' + (expected - remaining) + '/' + expected + ')');
} else {
- Module['setStatus']('Please wait..');
+ Module['setStatus']('Please wait...');
}
} else {
Module['setStatus']('');
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...');