Skip to content
Snippets Groups Projects
Commit a39070b4 authored by Albert Gräf's avatar Albert Gräf
Browse files

Fix up the nwworkingdir of the help browser's file browser (fixes #237).

parent 2ad6afbb
No related branches found
No related tags found
1 merge request!70Fix up the nwworkingdir of the help browser's file browser (fixes #237).
......@@ -516,6 +516,7 @@ function add_events() {
}
function register_window_id(id, attrs) {
var doc_path = path.join(pdgui.get_lib_dir(), "doc");
translate_form();
// Translate the placeholder for the search input:
document.getElementById("search_text").placeholder =
......@@ -526,7 +527,7 @@ function register_window_id(id, attrs) {
document.getElementById("results").textContent = l("search.building_index");
document.getElementById("search_text").disabled = true;
document.getElementById("file_browser").setAttribute("nwworkingdir",
pdgui.get_gui_dir() + "/doc"); // Probably need a doc getter in pdgui
doc_path); // Probably need a doc getter in pdgui
build_index();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment