-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwindow.html
More file actions
61 lines (57 loc) · 2.65 KB
/
window.html
File metadata and controls
61 lines (57 loc) · 2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{#embed.title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="../../tiny_mce_popup.js">//</script>
<script type="text/javascript" src="../../utils/mctabs.js">//</script>
<script type="text/javascript" src="../../utils/form_utils.js">//</script>
<!--script type="text/javascript" src="../../../../examples/CodeMirror-0.8/js/codemirror.js">//</script-->
<script type="text/javascript" src="js/embed_dialog.js">//</script>
<link href="css/embed_dialog.css" rel="stylesheet" type="text/css"/>
<base target="_self"/>
</head>
<body onload="init();document.body.style.display='';" style="display: none">
<div class="title">{#embed.title}</div>
<form name="iframe" action="#">
<div class="panel_wrapper">
<!-- iframe panel -->
<div id="iframe_panel" class="panel current">
<table border="0" cellpadding="4" cellspacing="0" style="width:100%">
<tr>
<td>
<fieldset>
<legend>{#embed.source}</legend>
<textarea name="source" id="source" rows="8" cols="60"></textarea>
<br/>
<span>({#embed.paste_your_embed_code_here})</span>
</fieldset>
</td>
</tr>
<tr>
<td>
<fieldset>
<legend>{#embed.preview}</legend>
<div id="btn-preview-container">
<input type="button" value="{#embed.btn_refresh}" class="button" style="float:none" onclick="updatePreview()">
</div>
<div>
<iframe id="preview" name="preview" frameborder="0"><!-- --></iframe>
</div>
</fieldset>
</td>
</tr>
</table>
</div>
</div>
<div class="mceActionPanel">
<div style="float: left">
<input type="button" id="insert" name="insert" value="{#insert}" onclick="insertSource();"/>
</div>
<div style="float: right">
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();"/>
</div>
</div>
</form>
</body>
</html>