Changeset 419 for trunk/plugins/TableOperations
- Timestamp:
- 10/31/05 05:33:41 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/TableOperations/table-operations.js
r413 r419 43 43 // add a new line in the toolbar 44 44 cfg.toolbar.push(toolbar); 45 } ;45 } 46 46 47 47 TableOperations._pluginInfo = { … … 169 169 function selected(val) { 170 170 return val ? " selected" : ""; 171 } ;171 } 172 172 173 173 // dialog contents … … 322 322 function selected(val) { 323 323 return val ? " selected" : ""; 324 } ;324 } 325 325 326 326 // dialog contents … … 392 392 td.innerHTML = mozbr; 393 393 } 394 } ;394 } 395 395 396 396 function splitRow(td) { … … 411 411 editor.forceRedraw(); 412 412 editor.updateToolbar(); 413 } ;413 } 414 414 415 415 function splitCol(td) { … … 426 426 editor.forceRedraw(); 427 427 editor.updateToolbar(); 428 } ;428 } 429 429 430 430 function splitCell(td) { … … 436 436 splitRow(items[index++]); 437 437 } 438 } ;438 } 439 439 440 440 function selectNextNode(el) { … … 453 453 } 454 454 editor.selectNodeContents(node); 455 } ;455 } 456 456 457 457 switch (button_id) { … … 959 959 input.select(); 960 960 } 961 } ;961 } 962 962 select.onchange = function() { setCharVisibility(this.value == "char"); }; 963 963 setCharVisibility(select.value == "char"); … … 1109 1109 } 1110 1110 } 1111 } ;1111 } 1112 1112 select.onchange = function() { setBorderFieldsStatus(this.value == "none"); }; 1113 1113
Note: See TracChangeset
for help on using the changeset viewer.