You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by be...@apache.org on 2016/02/13 14:57:00 UTC

fauxton commit: updated refs/heads/master to 8415f3d

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 63796145e -> 8415f3d11


Remove old code

This just removes a clause in a store that references a deleted
function. Caused errors with dash mocha tests.


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

Branch: refs/heads/master
Commit: 8415f3d118bea99ab4bbdb417dfff33fa83af2f4
Parents: 6379614
Author: Ben Keen <be...@gmail.com>
Authored: Fri Feb 12 10:02:59 2016 -0800
Committer: Ben Keen <be...@gmail.com>
Committed: Fri Feb 12 16:16:26 2016 -0800

----------------------------------------------------------------------
 app/addons/databases/stores.js | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/8415f3d1/app/addons/databases/stores.js
----------------------------------------------------------------------
diff --git a/app/addons/databases/stores.js b/app/addons/databases/stores.js
index 0f73b52..9d8b711 100644
--- a/app/addons/databases/stores.js
+++ b/app/addons/databases/stores.js
@@ -89,7 +89,6 @@ define([
 
     dispatch: function (action) {
       switch (action.type) {
-
         case ActionTypes.DATABASES_INIT:
           this.init(action.options.collection, action.options.backboneCollection);
           this.setPage(action.options.page);
@@ -112,10 +111,6 @@ define([
           this.setLoading(false);
         break;
 
-        case ActionTypes.DATABASES_SHOWDELETE_MODAL:
-          this.setDeleteModal(action.options);
-        break;
-
         default:
         return;
       }