You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by de...@apache.org on 2014/03/06 17:37:20 UTC

couchdb commit: updated refs/heads/master to fb4e845

Repository: couchdb
Updated Branches:
  refs/heads/master abe96eb2c -> fb4e84522


Adding semicolons back to activetasks to make the compiler happy.


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/fb4e8452
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/fb4e8452
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/fb4e8452

Branch: refs/heads/master
Commit: fb4e845229bf192439eb88a875d9e879784e5711
Parents: abe96eb
Author: suelockwood <de...@apache.org>
Authored: Thu Mar 6 11:37:17 2014 -0500
Committer: suelockwood <de...@apache.org>
Committed: Thu Mar 6 11:37:17 2014 -0500

----------------------------------------------------------------------
 src/fauxton/app/addons/activetasks/views.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/fb4e8452/src/fauxton/app/addons/activetasks/views.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/activetasks/views.js b/src/fauxton/app/addons/activetasks/views.js
index 8a305f1..1da8f52 100644
--- a/src/fauxton/app/addons/activetasks/views.js
+++ b/src/fauxton/app/addons/activetasks/views.js
@@ -170,13 +170,13 @@ function (app, FauxtonAPI, activetasks) {
         }
       }
       if (this.model.get('source_seq') !== undefined) {
-        progress += "Current source sequence: " + this.model.get('source_seq') + ". "
+        progress += "Current source sequence: " + this.model.get('source_seq') + ". ";
       }
       if (this.model.get('changes_done') !== undefined) {
-        progress += this.model.get('changes_done') + " Changes done. "
+        progress += this.model.get('changes_done') + " Changes done. ";
       }
       if (this.model.get('progress') !== undefined) {
-        progress += "Progress: " + this.model.get('progress') + "% "
+        progress += "Progress: " + this.model.get('progress') + "% ";
       }
 
       return progress;