Update of /cvsroot/php-blog/serendipity/htmlarea/plugins/TableOperations
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20038/plugins/TableOperations
Added Files:
table-operations.js
Log Message:
Upgrade to latest WYSIWYG manager
--- NEW FILE: table-operations.js ---
// Table Operations Plugin for HTMLArea-3.0
// Implementation by Mihai Bazon. Sponsored by http://www.bloki.com
//
// htmlArea v3.0 - Copyright (c) 2002 interactivetools.com, inc.
// This notice MUST stay intact for use (see license.txt).
//
// A free WYSIWYG editor replacement for <textarea> fields.
// For full source code and docs, visit http://www.interactivetools.com/
//
// Version 3.0 developed by Mihai Bazon for InteractiveTools.
// http://dynarch.com/mishoo
//
// $Id: table-operations.js,v 1.1 2004/03/23 15:41:09 garvinhicking Exp $
// Object that will encapsulate all the table operations provided by
// HTMLArea-3.0 (except "insert table" which is included in the main file)
function TableOperations(editor) {
this.editor = editor;
[...1121 lines suppressed...]
// input.type = "text";
// input.size = "5";
// input.name = "f_st_margin";
// td.appendChild(input);
// input.style.marginRight = "0.5em";
// td.appendChild(doc.createTextNode(i18n["Padding"] + ":"));
// input = doc.createElement("input");
// input.type = "text";
// input.size = "5";
// input.name = "f_st_padding";
// td.appendChild(input);
// input.style.marginLeft = "0.5em";
// input.style.marginRight = "0.5em";
// td.appendChild(doc.createTextNode(i18n["pixels"]));
return fieldset;
};
//// END GENERIC CODE -------------------------------------------------------
|