update files

This commit is contained in:
nuintun
2015-12-03 14:31:10 +08:00
parent c8b7de1fce
commit 53bce3cfc8
2 changed files with 44 additions and 3 deletions

View File

@@ -2769,11 +2769,15 @@ function htmlStyle(styles){
}
if (styles.italic) {
style += 'font-style: italic;';
style += 'font-style:italic;';
}
if (styles.underline) {
style += 'text-decoration: underline;';
style += 'text-decoration:underline;';
}
if (styles.conceal) {
style += 'visibility:hidden;';
}
return style;