Skip to content

Commit

Permalink
Improvement to table editing. If table border is set to zero
Browse files Browse the repository at this point in the history
you'll still see the dotted border.
  • Loading branch information
julmis committed Dec 3, 2003
1 parent 4b45f30 commit d1e5e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/editor/htmlarea.php
Expand Up @@ -742,7 +742,7 @@ function initIframe() {
doc.open();
var html = "<html>\n";
html += "<head>\n";
html += "<style>" + editor.config.pageStyle + "</style>\n";
html += "<style>" + editor.config.pageStyle + " td { border: 1px dotted gray; }</style>\n";
html += "</head>\n";
html += "<body>\n";
html += editor._textArea.value;
Expand Down

0 comments on commit d1e5e63

Please sign in to comment.