summaryrefslogtreecommitdiff
path: root/share/www/database.html
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/database.html')
-rw-r--r--share/www/database.html7
1 files changed, 1 insertions, 6 deletions
diff --git a/share/www/database.html b/share/www/database.html
index 5a722e1a..1abed3db 100644
--- a/share/www/database.html
+++ b/share/www/database.html
@@ -40,11 +40,6 @@ specific language governing permissions and limitations under the License.
if (page.redirecting) return;
$("h1 strong").text(page.db.name);
var viewPath = page.viewName || "_all_docs";
- if (/^_design\//.test(viewPath)) {
- var parts = viewPath.split("/");
- parts.splice(2, 0, "_view");
- viewPath = parts.join("/");
- }
if (viewPath != "_temp_view" && viewPath != "_design_docs") {
$("h1 a.raw").attr("href", "/" + encodeURIComponent(page.db.name) +
"/" + viewPath);
@@ -95,7 +90,7 @@ specific language governing permissions and limitations under the License.
var viewName = $(this).val();
if (!viewName) $.cookies.remove(page.db.name + ".view");
location.href = "?" + encodeURIComponent(page.db.name) +
- (viewName ? "/" + encodeURIComponent(viewName) : "");
+ (viewName ? "/" + viewName : "");
});
$("#documents thead th.key").click(function() {
$(this).toggleClass("desc");