Repository: couchdb Updated Branches: refs/heads/master 18f7d7de7 -> 9484bdaff
Fauxton: Fix clone cancel button This fixes the issue that when a user cancels a clone doc it goes back to all docs. Now it just closes the modal. Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/9484bdaf Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/9484bdaf Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/9484bdaf Branch: refs/heads/master Commit: 9484bdaff8103bca4e9ee7684e0f78b0281334f7 Parents: 18f7d7d Author: sebastianrothbucher <[email protected]> Authored: Sat Jun 21 20:11:17 2014 +0200 Committer: Garren Smith <[email protected]> Committed: Mon Jun 23 10:00:15 2014 +0200 ---------------------------------------------------------------------- .../app/addons/documents/templates/duplicate_doc_modal.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/9484bdaf/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html b/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html index 54be01f..3038559 100644 --- a/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html +++ b/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html @@ -28,7 +28,7 @@ the License. </div> <div class="modal-footer"> - <button data-dismiss="modal" class="btn cancel-button"><i class="icon fonticon-circle-x"></i> Cancel</button> + <button data-dismiss="modal" class="btn"><i class="icon fonticon-circle-x"></i> Cancel</button> <button id="duplicate-btn" class="btn btn-success save"><i class="fonticon-circle-check"></i> Clone</button> </div> </div>
