summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuelockwood <deathbearbrown@gmail.com>2013-10-02 14:51:09 -0400
committersuelockwood <deathbearbrown@gmail.com>2013-10-02 14:51:09 -0400
commitf2c954784d8d989bb39407fb3592520fa64155c7 (patch)
tree23dadc420422351a4208ef4eff23cefe2477db60
parent066d69b2b5520886a3bcfa27db1750fc932bdbe4 (diff)
downloadcouchdb-replicator-redesign.tar.gz
Temporary fix for Edit view issue with codemirrorreplicator-redesign
-rw-r--r--src/fauxton/app/modules/documents/views.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fauxton/app/modules/documents/views.js b/src/fauxton/app/modules/documents/views.js
index e948dc191..3fd47d42d 100644
--- a/src/fauxton/app/modules/documents/views.js
+++ b/src/fauxton/app/modules/documents/views.js
@@ -1283,7 +1283,7 @@ function(app, FauxtonAPI, Components, Documents, pouchdb, Codemirror, JSHint, re
mapFun.val(this.langTemplates[this.defaultLang].map);
reduceFun.val(this.langTemplates[this.defaultLang].reduce);
} else {
- this.$('#index').hide();
+ setTimeout(function(){this.$('#index').hide();}, 300);
this.$('#index-nav').parent().removeClass('active');
}