40 lines
1.5 KiB
HTML
40 lines
1.5 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 SketchLeftRemoveStationSch2_RemoveSingleStationPostMessage(str){
|
|
parent.window.postMessage(
|
|
str,
|
|
"*" //or "www.parentpage.com"
|
|
);
|
|
}
|
|
function Button_RemoveSingleStationOK(){
|
|
var str="RemoveStationSch2_RemoveSingleStation:OK#";
|
|
SketchLeftRemoveStationSch2_RemoveSingleStationPostMessage(str);
|
|
}
|
|
function Button_RemoveSingleStationCancel(){
|
|
var str="RemoveStationSch2_RemoveSingleStation:Cancel#";
|
|
SketchLeftRemoveStationSch2_RemoveSingleStationPostMessage(str);
|
|
}
|
|
</script>
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<tr>
|
|
<p>
|
|
<input type=button class="btn" id="Button_RemoveSingleStationOK" value="RemoveSingleStationOK" onclick=Button_RemoveSingleStationOK() style="background:lightblue"></input>
|
|
</p>
|
|
</tr>
|
|
<tr>
|
|
<p>
|
|
<input type=button class="btn" id="Button_RemoveSingleStationCancel" value="RemoveSingleStationCancel" onclick=Button_RemoveSingleStationCancel() style="background:lightcoral"></input>
|
|
</p>
|
|
</tr>
|
|
</body>
|
|
<script src="../js/drag.js"></script>
|
|
</html> |