summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuelockwood <deathbear@apache.org>2014-01-03 12:29:46 -0500
committersuelockwood <deathbear@apache.org>2014-01-03 12:29:46 -0500
commitcdb1218123486eb3abf51706b1bd5c1fe7eb7241 (patch)
treebc12f6251e13a31b2a663796a5495b1d93193439
parent7007dac0849e9678ee20139bde64d71fdd8e993e (diff)
downloadcouchdb-cdb1218123486eb3abf51706b1bd5c1fe7eb7241.tar.gz
Fixed an issue with the view editor encoding values when it shouldn't
-rw-r--r--src/fauxton/app/templates/documents/view_editor.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fauxton/app/templates/documents/view_editor.html b/src/fauxton/app/templates/documents/view_editor.html
index cf6aa26ad..ddb5a0cb9 100644
--- a/src/fauxton/app/templates/documents/view_editor.html
+++ b/src/fauxton/app/templates/documents/view_editor.html
@@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
the License.
-->
<div class="row">
- <ul class="nav nav-tabs window-resizeable" id="db-views-tabs-nav">
+ <ul class="nav nav-tabs" id="db-views-tabs-nav">
<li class="active"> <a data-bypass="true" id="index-nav" class="fonticon-wrench fonticon" data-toggle="tab" href="#index"><% if (newView) { %>Create Index <% } else { %>Edit Index <% } %></a></li>
<% if (!newView) { %>
<li><a data-bypass="true" id="query-nav" class="fonticon-plus fonticon" href="#query" data-toggle="tab">Query Options</a></li>
@@ -40,7 +40,7 @@ the License.
<% if (newView) { %>
<div class="js-editor" id="map-function"><%= langTemplates.map %></div>
<% } else { %>
- <div class="js-editor" id="map-function"><%= ddoc.get('views')[viewName].map %></div>
+ <div class="js-editor" id="map-function"><%- ddoc.get('views')[viewName].map %></div>
<% } %>
</div>
@@ -62,7 +62,7 @@ the License.
<% if (newView) { %>
<div class="js-editor" id="reduce-function"><%= langTemplates.reduce %></div>
<% } else { %>
- <div class="js-editor" id="reduce-function"><%= ddoc.get('views')[viewName].reduce %></div>
+ <div class="js-editor" id="reduce-function"><%- ddoc.get('views')[viewName].reduce %></div>
<% } %>
</div>