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/2041-update-ibrowse Commit: fb4e845229bf192439eb88a875d9e879784e5711 Parents: abe96eb Author: suelockwood <[email protected]> Authored: Thu Mar 6 11:37:17 2014 -0500 Committer: suelockwood <[email protected]> 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;
