mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-20 14:31:30 +08:00
Merge pull request #4855 from okriuchykhin/ok_SCI_7779
Fix icons in custom tinyMCE menu [SCI-7779]
This commit is contained in:
commit
58be66a06c
1 changed files with 6 additions and 6 deletions
12
app/javascript/packs/tiny_mce.js
vendored
12
app/javascript/packs/tiny_mce.js
vendored
|
@ -266,10 +266,10 @@ window.TinyMCE = (() => {
|
|||
{ title: 'Bold', icon: 'bold', format: 'bold' },
|
||||
{ title: 'Italic', icon: 'italic', format: 'italic' },
|
||||
{ title: 'Underline', icon: 'underline', format: 'underline' },
|
||||
{ title: 'Strikethrough', icon: 'strikethrough', format: 'strikethrough' },
|
||||
{ title: 'Strikethrough', icon: 'strike-through', format: 'strikethrough' },
|
||||
{ title: 'Superscript', icon: 'superscript', format: 'superscript' },
|
||||
{ title: 'Subscript', icon: 'subscript', format: 'subscript' },
|
||||
{ title: 'Code', icon: 'code', format: 'code' }
|
||||
{ title: 'Code', icon: 'sourcecode', format: 'code' }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -282,10 +282,10 @@ window.TinyMCE = (() => {
|
|||
{
|
||||
title: 'Alignment',
|
||||
items: [
|
||||
{ title: 'Left', icon: 'alignleft', format: 'alignleft' },
|
||||
{ title: 'Center', icon: 'aligncenter', format: 'aligncenter' },
|
||||
{ title: 'Right', icon: 'alignright', format: 'alignright' },
|
||||
{ title: 'Justify', icon: 'alignjustify', format: 'alignjustify' }
|
||||
{ title: 'Left', icon: 'align-left', format: 'alignleft' },
|
||||
{ title: 'Center', icon: 'align-center', format: 'aligncenter' },
|
||||
{ title: 'Right', icon: 'align-right', format: 'alignright' },
|
||||
{ title: 'Justify', icon: 'align-justify', format: 'alignjustify' }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue