diff --git a/pd/nw/dialog_search.html b/pd/nw/dialog_search.html index b423bfbaffacacd5dda1332e7a3df4e63c852477..53d8e74abcf449940fe6dd2ab02914886d2a8771 100644 --- a/pd/nw/dialog_search.html +++ b/pd/nw/dialog_search.html @@ -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(); }