From 353aef91eb233d6c429019eb26d8b48524c63409 Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Thu, 20 Oct 2016 20:33:27 +0200 Subject: [PATCH] Comment out debugging messages. --- pd/nw/dialog_search.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pd/nw/dialog_search.html b/pd/nw/dialog_search.html index 36d7a44cf..ec8b34627 100644 --- a/pd/nw/dialog_search.html +++ b/pd/nw/dialog_search.html @@ -235,9 +235,9 @@ function file_browser_click() { function file_browser_callback(elem) { var doc = elem.value; - pdgui.post("file callback: file is " + elem.value); - pdgui.post("dir is " + pdgui.defunkify_windows_path(path.dirname(doc))); - pdgui.post("file is " + pdgui.defunkify_windows_path(path.basename(doc))); + //pdgui.post("file callback: file is " + elem.value); + //pdgui.post("dir is " + pdgui.defunkify_windows_path(path.dirname(doc))); + //pdgui.post("file is " + pdgui.defunkify_windows_path(path.basename(doc))); pdgui.doc_open(pdgui.defunkify_windows_path(path.dirname(doc)), pdgui.defunkify_windows_path(path.basename(doc))); display_directory(pdgui.defunkify_windows_path(path.dirname(doc))); -- GitLab