From 779f90558c2632ec95c006dbb5c7217d16a84065 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 24 Nov 2009 12:33:15 +0000 Subject: [PATCH] A `lang' parameter gets carried through the pages. svn: r17037 original commit: 825a47dfefde43fb64dc29266c4ed6cdf971f0f9 --- collects/scribble/scribble-common.js | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/collects/scribble/scribble-common.js b/collects/scribble/scribble-common.js index 4ff914dc..4695375d 100644 --- a/collects/scribble/scribble-common.js +++ b/collects/scribble/scribble-common.js @@ -97,7 +97,7 @@ function DoSearchKey(event, field, ver, top_path) { return true; } -function TocviewToggle(glyph,id) { +function TocviewToggle(glyph, id) { var s = document.getElementById(id).style; var expand = s.display == "none"; s.display = expand ? "block" : "none"; @@ -114,3 +114,19 @@ function AddOnLoad(fun) { on_load_funcs.push(fun); } window.onload = function() { for (var i=0; i