diff --git a/dashboard-ui/dashboard.html b/dashboard-ui/dashboard.html
index ef795a8336..81ee8ceb77 100644
--- a/dashboard-ui/dashboard.html
+++ b/dashboard-ui/dashboard.html
@@ -55,7 +55,9 @@
Manage Scheduled Tasks
-
+
+
+
Help improve Media Browser
diff --git a/dashboard-ui/scripts/dashboardpage.js b/dashboard-ui/scripts/dashboardpage.js
index 9c6614bca1..29b6cc3991 100644
--- a/dashboard-ui/scripts/dashboardpage.js
+++ b/dashboard-ui/scripts/dashboardpage.js
@@ -472,6 +472,18 @@
DashboardPage.pollForInfo();
});
+ },
+
+ restart: function () {
+
+ Dashboard.confirm("Are you sure you wish to restart Media Browser Server?", "Restart", function (result) {
+
+ if (result) {
+ $(this).button('disable');
+ Dashboard.restartServer();
+ }
+
+ });
}
};