diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2017-06-26 00:35:31 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@edx.srv.br> | 2017-06-26 05:38:08 +0200 |
commit | b915986913b52910c342eb831351897868226c0d (patch) | |
tree | bc059a785e58bfa80af50ee949f868bb2e317260 /help3xsl/help.js | |
parent | 181b72469b27cc2f711525838463e98a0920161c (diff) |
Help-in-browser (v)
* Add piwik analysis
* handle SHARED module in search
Change-Id: I7c3c653d5e1211eed6c45b521fc35a9dc52ed21e
Reviewed-on: https://gerrit.libreoffice.org/39251
Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
Diffstat (limited to 'help3xsl/help.js')
-rw-r--r-- | help3xsl/help.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/help3xsl/help.js b/help3xsl/help.js index 982f4bc8e1..76ec59b53a 100644 --- a/help3xsl/help.js +++ b/help3xsl/help.js @@ -9,7 +9,7 @@ // Used to set Apllication in caseinlie=APP function setModule(module){ - if (module == null){module="SHARED"} + if (module == null){module="WRITER"} document.getElementById("bookmark"+module).hidden=false; var itemspan = document.getElementsByTagName("span"); var n = itemspan.length; @@ -35,7 +35,7 @@ function setSystem(system){ function fixURL(module, system){ var itemlink = document.getElementById("DisplayArea").getElementsByTagName("a"); var pSystem = (system == null) ? "WIN" : system; - var pAppl = (module == null) ? "SHARED" : module; + var pAppl = (module == null) ? "WRITER" : module; var n = itemlink.length; var item; for (var i = 0; i<n; i++) {setURLParam(itemlink[i], pSystem, pAppl) @@ -60,7 +60,7 @@ function setURLParam (itemlink, pSystem, pAppl) { } // Set System change buttons function setSystemURLButton (module) { - if (module == null){module="SHARED"} + if (module == null){module="WRITER"} var button = document.getElementById("lin").getElementsByTagName("a"); setURLParam(button[0],'UNIX', module); button = document.getElementById("win").getElementsByTagName("a"); |