Skip to content

Commit

Permalink
Fix the webjars path, they need to be relative to this file rather th…
Browse files Browse the repository at this point in the history
…an the root of the path
  • Loading branch information
johnmay committed Jan 30, 2024
1 parent bed0ac2 commit b1e0433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cdkdepict-webapp/src/main/webapp/WEB-INF/static/depict.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" type="text/css" href="css/depict.css">
<link rel="stylesheet" type="text/css" href="css/Glyphter.css">
<link rel="stylesheet" type="text/css" href="/webjars/font-awesome/css/all.css">
<script src="/webjars/jquery/jquery.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="webjars/font-awesome/css/all.css">
<script src="webjars/jquery/jquery.min.js" type="text/javascript"></script>
<script src="js/depict.js" type="text/javascript"></script>
</head>
<body>
Expand Down

0 comments on commit b1e0433

Please sign in to comment.