Accidentally removed modal restart button in settings

This commit is contained in:
JonnyWong16 2016-04-27 20:29:19 -07:00
commit be7fbdf5d8
2 changed files with 12 additions and 2 deletions

View file

@ -269,7 +269,10 @@ ${next.headerIncludes()}
}); });
$("#nav-restart").click(function () { $("#nav-restart").click(function () {
window.location.href = "restart"; var r = confirm("Are you sure you want to restart PlexPy?");
if (r == true) {
window.location.href = "restart";
}
}); });
$("#nav-update").first().one("click", function () { $("#nav-update").first().one("click", function () {

View file

@ -2052,7 +2052,10 @@ $(document).ready(function() {
}); });
$("#menu_link_restart").click(function() { $("#menu_link_restart").click(function() {
window.location.href = "restart"; var r = confirm("Are you sure you want to restart PlexPy?");
if (r == true) {
window.location.href = "restart";
}
}); });
$("#menu_link_update_check").click(function() { $("#menu_link_update_check").click(function() {
@ -2063,6 +2066,10 @@ $(document).ready(function() {
window.location.href = "checkGithub"; window.location.href = "checkGithub";
}); });
$("#modal_link_restart").click(function() {
window.location.href = "restart";
});
if ($("#api_enabled").is(":checked")) { if ($("#api_enabled").is(":checked")) {
$("#apioptions").show(); $("#apioptions").show();
} else { } else {