Просмотр файла wym-editor/dialogs/link.htm

Размер файла: 1.38Kb
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
 * WYMeditor : what you see is What You Mean web-based editor
 * Copyright (C) 2006 Jean-François Hovinne - Daniel Reszka
 * Use of WYMeditor is granted by the terms of the MIT License (http://www.opensource.org/licenses/mit-license.php).
 *
 * For further information visit:
 * 		http://www.wymeditor.org/
 * 
 * File Name:
 *		link.htm
 *		Dialog which defines links values.
 *		See the documentation for more info.
 * 
 * File Authors:
 * 		Jean-François Hovinne ([email protected])
 *		Daniel Reszka ([email protected])
-->

<html>
<head>
<title>WYMeditor - Link</title>
<link rel="stylesheet" type="text/css" href="../skins/editor-skin.css" />
<script type="text/javascript" src="../browser.js"></script>
<script type="text/javascript" src="../util.js"></script>
<script type="text/javascript" src="../dialog.js"></script>
</head>

<body onload="init('link')" class="dialog" id="link">
<p>
 <label>URL</label><input type="text" id="link_href" value="" />
</p>
<p>
 <label>Title</label><input type="text" id="link_title" value="" />
</p>
<p>
 <input id="bt_submit" type="button" value="Submit" onclick="link_sendValue();window.close()" />
 <input id="bt_cancel" type="button" value="Cancel" onclick="window.close()" />
</p>
</body>
</html>