js, html에서 참조하는 이미지 경로 수정
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require('../twe/lib.php');
|
||||
require('../hwe/lib.php');
|
||||
|
||||
|
||||
$jsonPost = WebUtil::parseJsonPost();
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
require('../twe/lib.php');
|
||||
namespace sammo;
|
||||
|
||||
require('../hwe/lib.php');
|
||||
|
||||
/*
|
||||
원래대로라면 json을 돌려주는게 맞지만
|
||||
|
||||
+5
-3
@@ -5,10 +5,12 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<script src="../e_lib/jquery-3.2.1.min.js"></script>
|
||||
<script src="../twe/js/common.js"></script>
|
||||
<script src="../d_shared/common_path.js"></script>
|
||||
<script src="../hwe/js/common.js"></script>
|
||||
<script src="msg.js"></script>
|
||||
<link href="../twe/css/normalize.css" rel="stylesheet">
|
||||
<link href="../twe/css/common.css" rel="stylesheet">
|
||||
<link href="../hwe/css/normalize.css" rel="stylesheet">
|
||||
<link href="../d_shared/common.css" rel="stylesheet">
|
||||
<link href="../hwe/css/common.css" rel="stylesheet">
|
||||
<link href="msg.css" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
|
||||
@@ -134,6 +134,7 @@ function redrawMsg(deferred){
|
||||
}
|
||||
|
||||
msg.msgType = msgType;
|
||||
msg.defaultIcon = pathConfig.sharedIcon+'/default.jpg';
|
||||
var msgHtml = TemplateEngine(messageTemplate, msg);
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
require('../twe/lib.php');
|
||||
namespace sammo;
|
||||
|
||||
require('../hwe/lib.php');
|
||||
|
||||
|
||||
$jsonPost = WebUtil::parseJsonPost();
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<%if(src.icon) { %>
|
||||
<img src="<%encodeURI(src.icon)%>">
|
||||
<%} else {%>
|
||||
<img src="/image/default.jpg">
|
||||
<img src="<%encodeURI(defaultIcon)%>">
|
||||
<%}%>
|
||||
</div>
|
||||
<div class="msg_body">
|
||||
|
||||
Reference in New Issue
Block a user