-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdialog.htm
23 lines (20 loc) · 956 Bytes
/
dialog.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{#latex_dlg.title}</title>
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
<script type="text/javascript" src="js/dialog.js"></script>
</head>
<body>
<form onsubmit="ExampleDialog.insert();return false;" action="#">
<p>Paste your latex code.</p>
<p><input type="button" id="preview" name="preview" value="Preview" onclick="LatexDialog.preview();" /></p>
<p><img id="previewImg" src="" alt=""/></p>
<p><textarea name="latex_code" cols="100" rows="19"></textarea></p>
<div class="mceActionPanel">
<input type="button" id="insert" name="insert" value="{#insert}" onclick="LatexDialog.insert();" />
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
</div>
</form>
</body>
</html>