Skip to content

Commit

Permalink
#173 修正静态资源路径
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhuisheng committed Oct 19, 2018
1 parent e429fce commit 1218ab7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions webapp/common/401.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<head>
<%@include file="/common/meta.jsp"%>
<title>401 - <spring:message code="core.401.failed" text="认证失败"/></title>
<link href="${ctx}/s/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="${ctx}/s/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<script type="text/javascript" src="${ctx}/s/jquery/jquery.min.js"></script>
<link href="${cdnPrefix}/public/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="${cdnPrefix}/public/bootstrap/3.3.7/css/bootstrap-responsive.min.css" rel="stylesheet">
<script type="text/javascript" src="${cdnPrefix}/public/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$('#targetContentDiv').height($(window).innerHeight() - 150);
Expand Down
6 changes: 3 additions & 3 deletions webapp/common/403.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<head>
<%@include file="/common/meta.jsp"%>
<title>403 - <spring:message code="core.403.forbidden" text="无权访问资源"/></title>
<link href="${ctx}/s/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="${ctx}/s/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<script type="text/javascript" src="${ctx}/s/jquery/jquery.min.js"></script>
<link href="${cdnPrefix}/public/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="${cdnPrefix}/public/bootstrap/3.3.7/css/bootstrap-responsive.min.css" rel="stylesheet">
<script type="text/javascript" src="${cdnPrefix}/public/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$('#targetContentDiv').height($(window).innerHeight() - 150);
Expand Down

0 comments on commit 1218ab7

Please sign in to comment.