Skip to content

Commit

Permalink
Merge pull request #297 from mbajur/patch-1
Browse files Browse the repository at this point in the history
Fix lists plugin configuration for TinyMCE
  • Loading branch information
rafalcymerys committed Jan 5, 2024
2 parents 18b7511 + 393047b commit aea0ce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/spree/backend/global/tinymce.es6
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ document.addEventListener("spree:load", function() {
tinymce.init({
selector: '.spree-rte',
plugins: [
'image table paste code link table'
'image table paste code link table lists'
],
menubar: false,
toolbar: 'undo redo | styleselect | bold italic link forecolor backcolor | alignleft aligncenter alignright alignjustify | table | bullist numlist outdent indent | code '
Expand All @@ -14,7 +14,7 @@ document.addEventListener("spree:load", function() {
selector: '.spree-rte-simple',
menubar: false,
plugins: [
'image table paste link table'
'image table paste link table lists'
],
toolbar: 'undo redo | styleselect | bold italic link forecolor backcolor | alignleft aligncenter alignright alignjustify | table | bullist numlist outdent indent'
});
Expand Down

0 comments on commit aea0ce2

Please sign in to comment.