From: Claudio Sacerdoti Coen Date: Wed, 9 May 2001 14:40:58 +0000 (+0000) Subject: URI may now have # X-Git-Tag: v0_1_3~157 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=ded9a65d38ae45de20036627c8fd5e83ff201688;p=helm.git URI may now have # --- diff --git a/helm/on-line/javascript/utils.js b/helm/on-line/javascript/utils.js index feab364de..1b637dcf4 100644 --- a/helm/on-line/javascript/utils.js +++ b/helm/on-line/javascript/utils.js @@ -21,6 +21,7 @@ function setParam(url,name,value) function extractParam(url,name) { var search = url.split("?")[1]; + search = search.split("#")[0]; var args = search.split("&"); var value = "???";