Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Aligned to the changes in engine.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Mar 29, 2018
1 parent 900b71e commit 8113dc9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/bold/boldediting.js
Expand Up @@ -37,7 +37,7 @@ export default class BoldEditing extends Plugin {
upcastAlso: [
'b',
{
style: {
styles: {
'font-weight': 'bold'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/code/codeediting.js
Expand Up @@ -34,7 +34,7 @@ export default class CodeEditing extends Plugin {
model: CODE,
view: 'code',
upcastAlso: {
style: {
styles: {
'word-wrap': 'break-word'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/italic/italicediting.js
Expand Up @@ -36,7 +36,7 @@ export default class ItalicEditing extends Plugin {
upcastAlso: [
'em',
{
style: {
styles: {
'font-style': 'italic'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/strikethrough/strikethroughediting.js
Expand Up @@ -38,7 +38,7 @@ export default class StrikethroughEditing extends Plugin {
'del',
'strike',
{
style: {
styles: {
'text-decoration': 'line-through'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/underline/underlineediting.js
Expand Up @@ -34,7 +34,7 @@ export default class UnderlineEditing extends Plugin {
model: UNDERLINE,
view: 'u',
upcastAlso: {
style: {
styles: {
'text-decoration': 'underline'
}
}
Expand Down

0 comments on commit 8113dc9

Please sign in to comment.