459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
diff
changeset
+ − 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1
+ − 2
<html xmlns="http://www.w3.org/1999/xhtml">
+ − 3
<head>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 4
<title>{#advanced_dlg.charmap_title}</title>
1
+ − 5
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 6
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 7
<script type="text/javascript" src="js/charmap.js"></script>
1
+ − 8
<base target="_self" />
+ − 9
</head>
459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
diff
changeset
+ − 10
<body id="charmap" style="display:none">
1
+ − 11
<table align="center" border="0" cellspacing="0" cellpadding="2">
+ − 12
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 13
<td colspan="2" class="title">{#advanced_dlg.charmap_title}</td>
1
+ − 14
</tr>
+ − 15
<tr>
459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
diff
changeset
+ − 16
<td id="charmapView" rowspan="2" align="left" valign="top">
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 17
<!-- Chars will be rendered here -->
1
+ − 18
</td>
+ − 19
<td width="100" align="center" valign="top">
459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
diff
changeset
+ − 20
<table border="0" cellpadding="0" cellspacing="0" width="100" style="height:100px">
1
+ − 21
<tr>
459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
diff
changeset
+ − 22
<td id="codeV"> </td>
1
+ − 23
</tr>
+ − 24
<tr>
459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
diff
changeset
+ − 25
<td id="codeN"> </td>
1
+ − 26
</tr>
+ − 27
</table>
+ − 28
</td>
+ − 29
</tr>
+ − 30
<tr>
+ − 31
<td valign="bottom" style="padding-bottom: 3px;">
+ − 32
<table width="100" align="center" border="0" cellpadding="2" cellspacing="0">
+ − 33
<tr>
+ − 34
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">HTML-Code</td>
+ − 35
</tr>
+ − 36
<tr>
+ − 37
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeA" align="center"> </td>
+ − 38
</tr>
+ − 39
<tr>
+ − 40
<td style="font-size: 1px;"> </td>
+ − 41
</tr>
+ − 42
<tr>
+ − 43
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">NUM-Code</td>
+ − 44
</tr>
+ − 45
<tr>
+ − 46
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeB" align="center"> </td>
+ − 47
</tr>
+ − 48
</table>
+ − 49
</td>
+ − 50
</tr>
+ − 51
</table>
+ − 52
+ − 53
</body>
+ − 54
</html>