jordandelozier / wysibb

WYSIWYG BBcode editor
http://www.wysibb.com
246 stars 86 forks source link

Set [td] width? #96

Open tdmrhn opened 9 years ago

tdmrhn commented 9 years ago

Really great project thanks for this Vadim.

I try to embed a code which i can set the width of a td in bbcode this is works. When i switch it to html it works again but try to switch back to bbcode the td width which i set is gone. How can i fix it?

'{SELTEXT}': '[td={WIDTH}]{SELTEXT}[/td]',

for (var i=1; i<=rc[0]; i++) { code += (this.options.bbmode) ? ' [tr]\n':''; for (var j=1; j<=rc[1]; j++) { code += (this.options.bbmode) ? ' [td={WIDTH}][/td]\n':'\uFEFF'; } code += (this.options.bbmode) ? '[/tr]\n':''; }