Diff for /loncom/html/htmlarea/plugins/TableOperations/Attic/table-operations.js between versions 1.1 and 1.2

version 1.1, 2004/02/18 08:07:16 version 1.2, 2004/06/09 14:04:38
Line 8 Line 8
 // For full source code and docs, visit http://www.interactivetools.com/  // For full source code and docs, visit http://www.interactivetools.com/
 //  //
 // Version 3.0 developed by Mihai Bazon for InteractiveTools.  // Version 3.0 developed by Mihai Bazon for InteractiveTools.
 //     http://students.infoiasi.ro/~mishoo  //   http://dynarch.com/mishoo
 //  //
 // $Id$  // $Id$
   
Line 30  function TableOperations(editor) { Line 30  function TableOperations(editor) {
  toolbar.push("separator");   toolbar.push("separator");
  } else {   } else {
  var id = "TO-" + btn[0];   var id = "TO-" + btn[0];
  cfg.registerButton(id, tt[id], "plugins/TableOperations/img/" + btn[0] + ".gif", false,   cfg.registerButton(id, tt[id], editor.imgURL(btn[0] + ".gif", "TableOperations"), false,
    function(editor, id) {     function(editor, id) {
    // dispatch button press event     // dispatch button press event
    self.buttonPress(editor, id);     self.buttonPress(editor, id);
Line 43  function TableOperations(editor) { Line 43  function TableOperations(editor) {
  cfg.toolbar.push(toolbar);   cfg.toolbar.push(toolbar);
 };  };
   
   TableOperations._pluginInfo = {
    name          : "TableOperations",
    version       : "1.0",
    developer     : "Mihai Bazon",
    developer_url : "http://dynarch.com/mishoo/",
    c_owner       : "Mihai Bazon",
    sponsor       : "Zapatec Inc.",
    sponsor_url   : "http://www.bloki.com",
    license       : "htmlArea"
   };
   
 /************************  /************************
  * UTILITIES   * UTILITIES
  ************************/   ************************/

Removed from v.1.1  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>