41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" id="container" onmousedown="startDrag(event)" onmouseup="stopDrag(event)" onmousemove="dragging(event)" style="overflow-x: hidden;
|
|
overflow-y: hidden; ">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="../css/bootstrap.min.css"/>
|
|
<link rel="stylesheet" href="../css/btn.css"/>
|
|
<link rel="stylesheet" href="../css/sketchBtn.css"/>
|
|
<script type="text/javascript" type="text/javascript">
|
|
function SketchLeftRemoveStationSch1_RemoveAllStationPostMessage(str){
|
|
parent.window.postMessage(
|
|
str,
|
|
"*" //or "www.parentpage.com"
|
|
);
|
|
}
|
|
function Button_RemoveAllStationOK(){
|
|
var str="RemoveStationSch1_RemoveAllStation:OK#";
|
|
SketchLeftRemoveStationSch1_RemoveAllStationPostMessage(str);
|
|
}
|
|
function Button_RemoveAllStationCancel(){
|
|
var str="RemoveStationSch1_RemoveAllStation:Cancel#";
|
|
SketchLeftRemoveStationSch1_RemoveAllStationPostMessage(str);
|
|
}
|
|
</script>
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
HMI_Sketch_Left_RemoveStation_Sch1_RemoveAllStation
|
|
<tr>
|
|
<p>
|
|
<input type=button class="btn" id="Button_RemoveAllStationOK" value="RemoveAllStationOK" onclick=Button_RemoveAllStationOK() style="background:lightblue"></input>
|
|
</p>
|
|
</tr>
|
|
<tr>
|
|
<p>
|
|
<input type=button class="btn" id="Button_RemoveAllStationCancel" value="RemoveAllStationCancel" onclick=Button_RemoveAllStationCancel() style="background:lightcoral"></input>
|
|
</p>
|
|
</tr>
|
|
</body>
|
|
<script src="../js/drag.js"></script>
|
|
</html> |