Remove unused PHP files related to Hyper-V and Storage dashboards
- Deleted `cluster-detail2.php`, `constants.inc copy.php`, `D.php`, and `Dashboard2.php`. These files were no longer in use and contributed to unnecessary clutter in the codebase. - Cleaned up references to removed files.
This commit is contained in:
43
navbar.html
43
navbar.html
@@ -1,9 +1,6 @@
|
||||
<!--
|
||||
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
|
||||
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
||||
-->
|
||||
|
||||
<link rel="stylesheet" href="/css/autocomplete.css">
|
||||
<script src="/js/jqueryui.js"></script>
|
||||
<script src="/js/JQueryUI.js"></script>
|
||||
|
||||
<div class="d-flex flex-column align-items-center align-items-sm-start px-3 pt-2 text-white min-vh-100 border-end border-primary">
|
||||
<a href="/" class="d-flex align-items-center pb-3 mb-md-0 me-md-auto text-white text-decoration-none">
|
||||
@@ -130,23 +127,23 @@
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$("#searchServer").autocomplete({
|
||||
source: "/search_servers.php",
|
||||
minLength: 2,
|
||||
appendTo: "body",
|
||||
position: { my: "left top", at: "left bottom-10" },
|
||||
select: function(event, ui) {
|
||||
window.location.href = "/inventory/server-detail.php?s=" + encodeURIComponent(ui.item.value);
|
||||
}
|
||||
});
|
||||
$("#searchServer").keypress(function(event) {
|
||||
if (event.which == 13) {
|
||||
event.preventDefault();
|
||||
var selectedServer = $(this).val().trim();
|
||||
if (selectedServer !== "") {
|
||||
window.location.href = "/inventory/server-detail.php?s=" + encodeURIComponent(selectedServer);
|
||||
}
|
||||
$("#searchServer").autocomplete({
|
||||
source: "/Inventory/search_servers.php",
|
||||
minLength: 2,
|
||||
appendTo: "body",
|
||||
position: { my: "left top", at: "left bottom-10" },
|
||||
select: function(event, ui) {
|
||||
window.location.href = "/Inventory/server-detail.php?s=" + encodeURIComponent(ui.item.value);
|
||||
}
|
||||
});
|
||||
$("#searchServer").keypress(function(event) {
|
||||
if (event.which == 13) {
|
||||
event.preventDefault();
|
||||
var selectedServer = $(this).val().trim();
|
||||
if (selectedServer !== "") {
|
||||
window.location.href = "/inventory/server-detail.php?s=" + encodeURIComponent(selectedServer);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</script>
|
||||
Reference in New Issue
Block a user