Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
topframe committed Jan 17, 2025
1 parent dc788af commit 42e5433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demo/app/webapps/appmon/WEB-INF/jsp/appmon/appmon.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://aspectran.com/tags" prefix="aspectran" %>
<link rel="stylesheet" href="<aspectran:url value="/assets/appmon/css/appmon.css?20250114"/>">
<script src="https://aspectran.github.io/assets/countries/countries.js"></script>
<script src="https://aspectran.com/assets/countries/countries.js"></script>
<script src="<aspectran:url value="/assets/appmon/js/front-builder.js?20250114"/>"></script>
<script src="<aspectran:url value="/assets/appmon/js/front-viewer.js?20250114"/>"></script>
<script src="<aspectran:url value="/assets/appmon/js/websocket-client.js?20250114"/>"></script>
Expand Down
2 changes: 1 addition & 1 deletion demo/app/webapps/appmon/assets/appmon/js/front-viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function FrontViewer(endpoint) {
let $item = $("<li/>").attr("data-sid", session.sessionId).append($indicator).appendTo($sessions);
if (session.countryCode) {
$("<img class='flag' alt=''/>")
.attr("src", "/assets/countries/flags/" + session.countryCode.toLowerCase() + ".png")
.attr("src", "https://aspectran.com/assets/countries/flags/" + session.countryCode.toLowerCase() + ".png")
.attr("alt", session.countryCode)
.attr("title", countries[session.countryCode].name + " / " + session.ipAddress)
.appendTo($item);
Expand Down

0 comments on commit 42e5433

Please sign in to comment.