silverstripe-framework/thirdparty/tinymce-advcode/dialog.html
Ingo Schommer 678502e2c9 API CHANGE Moved tinymce-advcode plugin from jsparty/tinymce_advcode to sapphire/thirdparty/tinymce-advcode
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92500 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-11-21 02:29:43 +00:00

30 lines
1021 B
HTML

<html>
<head>
<title>{#advcode_dlg.title}</title>
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
<script type="text/javascript" src="js/dialog.js"></script>
<script type="text/javascript" src="js/codepress/codepress.js"></script>
</head>
<body>
<form name="source" onsubmit="CodeDialog.insert();return false;">
<textarea id="codepress" class="codepress html linenumbers-on" cols="100" rows="25"></textarea>
</form>
<div>
<input type="checkbox" value="1" checked="checked" onclick="codepress.toggleLineNumbers()"/>
<label>{#advcode_dlg.number_toggle}</label>
</div>
<div class="mceActionPanel">
<div style="float: left">
<input type="button" id="insert" name="insert" value="{#insert}" onclick="CodeDialog.insert();" />
</div>
<div style="float: right">
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
</div>
</div>
</body>
</html>