Added Page Properties (26889) and Page Colors dialogs (14344), removed debug menu only in release (27237), link dialog fixes (27308), lots of dialog rewrite to use titledbox instead of fieldset, rewrote insert table dialog to use boxes. Changed font size to use CSS strings, not <font size> for ui, but other bugs prevented inserting spans for size. Other small bug fixes. r=brade.
git-svn-id: svn://10.0.0.236/trunk@60891 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -153,13 +153,13 @@ function onOK()
|
||||
|
||||
// Create necessary rows and cells for the table
|
||||
dump("Rows = "+rows+" Columns = "+columns+"\n");
|
||||
for (i = 0; i < rows; i++)
|
||||
for (var i = 0; i < rows; i++)
|
||||
{
|
||||
var newRow = editorShell.CreateElementWithDefaults("tr");
|
||||
if (newRow)
|
||||
{
|
||||
tableBody.appendChild(newRow);
|
||||
for (j = 0; j < columns; j++)
|
||||
for (var j = 0; j < columns; j++)
|
||||
{
|
||||
newCell = editorShell.CreateElementWithDefaults("td");
|
||||
if (newCell)
|
||||
|
||||
Reference in New Issue
Block a user