diff --git a/dashboard-ui/scripts/directorybrowser.js b/dashboard-ui/scripts/directorybrowser.js index d08f2e6555..017590352e 100644 --- a/dashboard-ui/scripts/directorybrowser.js +++ b/dashboard-ui/scripts/directorybrowser.js @@ -97,12 +97,13 @@ html += '
'; html += ''; html += ''; + html += ''; html += '
'; html += '
'; html += ''; - html += '
Network paths can be entered manually in the event the Network button fails to locate your devices. For example, \\\\my-server.
'; + html += '
Network paths can be entered manually in the event the Network button fails to locate your devices. For example, \\\\my-server or \\\\192.168.1.101.
'; html += '
'; @@ -133,6 +134,12 @@ refreshDirectoryBrowser(page, path); + }).on("click", ".btnRefreshDirectories", function () { + + var path = $('#txtDirectoryPickerPath', page).val(); + + refreshDirectoryBrowser(page, path); + }).on("change", "#txtDirectoryPickerPath", function () { refreshDirectoryBrowser(page, this.value);