-
+
@@ -403,10 +403,10 @@ Digi Demo - Management
$(document).ready(function() {
$("#banner-link").on({
"mouseover" : function() {
- $("#banner-logo").attr("src", "/static/images/Digi_logo_banner_gray.png");
+ $("#banner-logo").attr("src", "./static/images/Digi_logo_banner_gray.png");
},
"mouseout" : function() {
- $("#banner-logo").attr("src", "/static/images/Digi_logo_banner.png");
+ $("#banner-logo").attr("src", "./static/images/Digi_logo_banner.png");
}
});
});
@@ -423,7 +423,7 @@ Digi Demo - Management
$( document ).ready(function() {
$("#profile-container").on({
"mouseover" : function() {
- $("#profile-logo").attr("src", "/static/images/profile_green.png");
+ $("#profile-logo").attr("src", "./static/images/profile_green.png");
if (!$("#profile-container").hasClass("digi-green")) {
$("#profile-container").addClass("digi-green");
}
@@ -432,7 +432,7 @@ $( document ).ready(function() {
}
},
"mouseout" : function() {
- $("#profile-logo").attr("src", "/static/images/profile_gray.png");
+ $("#profile-logo").attr("src", "./static/images/profile_gray.png");
if (!$("#profile-container").hasClass("digi-gray")) {
$("#profile-container").addClass("digi-gray");
}
@@ -445,18 +445,18 @@ $( document ).ready(function() {
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+