You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2014/08/18 20:42:42 UTC

[2/2] fauxton commit: updated refs/heads/master to 4b3e5c9

delete unused variable


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

Branch: refs/heads/master
Commit: 1db30569c1436773e279fbd59d9ccf6d382519d3
Parents: 2283352
Author: Robert Kowalski <ro...@kowalski.gd>
Authored: Thu Aug 14 20:55:38 2014 +0200
Committer: Robert Kowalski <ro...@kowalski.gd>
Committed: Mon Aug 18 20:42:54 2014 +0200

----------------------------------------------------------------------
 app/addons/documents/views.js | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/1db30569/app/addons/documents/views.js
----------------------------------------------------------------------
diff --git a/app/addons/documents/views.js b/app/addons/documents/views.js
index b68df87..fef3106 100644
--- a/app/addons/documents/views.js
+++ b/app/addons/documents/views.js
@@ -380,7 +380,6 @@ function(app, FauxtonAPI, Components, Documents, Databases, Views, QueryOptions,
     toggleDocument: function (event) {
       var $row = this.$(event.target).closest('tr'),
           docId = $row.attr('data-id'),
-          db = this.database.get('id'),
           rev = this.collection.get(docId).get('_rev'),
           data = {_id: docId, _rev: rev, _deleted: true};