git-svn-id: http://xe-core.googlecode.com/svn/trunk@604 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-22 05:26:15 +00:00
parent 2a252d8de4
commit cccf9a0096
3 changed files with 6 additions and 4 deletions

View file

@ -35,7 +35,9 @@ function insertTable() {
var bg_color = xGetElementById("bg_color_input").value;
if(bg_color.length!=6) bg_color = "FFFFFF";
var text = "\n<table width=\""+width+"\" border=\""+inner_border+"\" cellspacing=\""+cellspacing+"\" cellpadding=\""+cellpadding+"\" style=\"border:"+border+"px solid #"+border_color+";background-color:#"+bg_color+"\">";
var text = "\n<table width=\""+width+"\" border=\""+inner_border+"\" cellspacing=\""+cellspacing+"\" cellpadding=\""+cellpadding+"\" ";
text += "style=\"border:"+border+"px solid #"+border_color+";background-color:#"+bg_color+"\"";
text +=">";
for(var row=0; row<rows_count;row++) {
text += "<tr>";