1.3D机房右侧弹框修复
2.菜单栏高亮提示
This commit is contained in:
1387
WebRoot/main.jsp
1387
WebRoot/main.jsp
File diff suppressed because it is too large
Load Diff
@@ -195,7 +195,7 @@ body {
|
||||
}
|
||||
|
||||
}
|
||||
with (oSon){
|
||||
with (oSon){
|
||||
innerHTML = info;
|
||||
style.display = "block";
|
||||
if(navigator.userAgent.indexOf("MSIE")>0) {
|
||||
@@ -207,6 +207,12 @@ body {
|
||||
y = e.clientY;
|
||||
style.left = x + window.document.body.scrollLeft-200 ;
|
||||
style.top = y + window.document.body.scrollTop-50;
|
||||
}else if(navigator.userAgent.indexOf("Chrome")>0){
|
||||
var e = event ? event : window.event;
|
||||
x = e.clientX;
|
||||
y = e.clientY;
|
||||
style.left = x + window.document.body.scrollLeft-200 ;
|
||||
style.top = y + window.document.body.scrollTop-50;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,6 +25,8 @@
|
||||
type="text/css"></link>
|
||||
<script type="text/javascript"
|
||||
src="<c:url value='/js/jquery-easyui-1.1.2/jquery.easyui.min.js' />"></script>
|
||||
<script type="text/javascript"
|
||||
src="<c:url value='/js/jquery-easyui-1.1.2/layer.js' />"></script>
|
||||
<style>
|
||||
body {
|
||||
background-image: url("${pageContext.request.contextPath}/images/show/bg.jpg");
|
||||
@@ -224,9 +226,9 @@ body {
|
||||
if(textStatus == "success" && (data!= null && data!= "" )){
|
||||
$("#nodeBoxs").html("");
|
||||
var t =$("#nodeBox").dialog("options").title;
|
||||
$("#nodeBox").dialog("setTitle", params[1]);
|
||||
$("#nodeBox").dialog("setTitle", params[1]);
|
||||
$("#nodeBox").dialog("open");
|
||||
|
||||
|
||||
var length = $(data).length;
|
||||
var raphaelBox = Raphael("nodeBoxs",boxWidth,boxHeight);
|
||||
//raphaelBox.rect(0,0,boxWidth,boxHeight).attr({'stroke-width':1,stroke: "#FFFFFF", fill: "#FBFBEA"});
|
||||
|
||||
Reference in New Issue
Block a user