mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 14:49:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@506 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
adb02c1c24
commit
f7d06aa737
6 changed files with 65 additions and 82 deletions
41
modules/editor/components/urllink/tpl/urllink.html
Normal file
41
modules/editor/components/urllink/tpl/urllink.html
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<!--%import("urllink.js")-->
|
||||
<!--%import("../lang")-->
|
||||
|
||||
<form action="./" method="get" id="fo" onSubmit="return false">
|
||||
|
||||
<div id="zone_AddUrl" class="editor_window">
|
||||
<table width="380" border="0" cellspacing="1" cellpadding="0">
|
||||
<col width="50" />
|
||||
<col width="*" />
|
||||
<tr>
|
||||
<td class="editor_field">text</td>
|
||||
<td><textarea name="text" class="editor_small_textarea"><?=$_REQUEST["title"]?></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="editor_field">url</td>
|
||||
<td><input type="text" name="url" class="editor_input" value="<?=$_REQUEST["url"]?>"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="editor_field">bold</td>
|
||||
<td><input type="checkbox" name="bold" value="Y" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="editor_field">type</td>
|
||||
<td>
|
||||
<select name="link_type">
|
||||
<option value="">default</option>
|
||||
<option value="editor_blue_text">blue</option>
|
||||
<option value="editor_red_text">red</option>
|
||||
<option value="editor_green_text">green</option>
|
||||
<option value="editor_yellow_text">yellow</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="button" id="manual_url_submit" class="editor_submit" value="Insert" onClick="insertUrl()" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue