annotate media/js/tiny_mce/themes/advanced/source_editor.htm @ 133:c515b7401078
Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author |
Brian Neal <bgneal@gmail.com> |
date |
Fri, 27 Nov 2009 00:21:47 +0000 |
parents |
a5b4c5ce0658 |
children |
149c3567fec1 |
rev |
line source |
bgneal@45
|
1 <html xmlns="http://www.w3.org/1999/xhtml">
|
bgneal@45
|
2 <head>
|
bgneal@45
|
3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
bgneal@45
|
4 <title>{#advanced_dlg.code_title}</title>
|
bgneal@45
|
5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
bgneal@45
|
6 <script type="text/javascript" src="js/source_editor.js"></script>
|
bgneal@45
|
7 </head>
|
bgneal@45
|
8 <body onresize="resizeInputs();" style="display:none; overflow:hidden;">
|
bgneal@45
|
9 <form name="source" onsubmit="saveContent();return false;" action="#">
|
bgneal@45
|
10 <div style="float: left" class="title">{#advanced_dlg.code_title}</div>
|
bgneal@45
|
11
|
bgneal@45
|
12 <div id="wrapline" style="float: right">
|
bgneal@45
|
13 <input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{#advanced_dlg.code_wordwrap}</label>
|
bgneal@45
|
14 </div>
|
bgneal@45
|
15
|
bgneal@45
|
16 <br style="clear: both" />
|
bgneal@45
|
17
|
bgneal@45
|
18 <textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,monospace; font-size: 12px;" dir="ltr" wrap="off" class="mceFocus"></textarea>
|
bgneal@45
|
19
|
bgneal@45
|
20 <div class="mceActionPanel">
|
bgneal@45
|
21 <div style="float: left">
|
bgneal@45
|
22 <input type="submit" name="insert" value="{#update}" id="insert" />
|
bgneal@45
|
23 </div>
|
bgneal@45
|
24
|
bgneal@45
|
25 <div style="float: right">
|
bgneal@45
|
26 <input type="button" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" id="cancel" />
|
bgneal@45
|
27 </div>
|
bgneal@45
|
28 </div>
|
bgneal@45
|
29 </form>
|
bgneal@45
|
30 </body>
|
bgneal@45
|
31 </html>
|