Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {
imageResize: {
// See optional "config" below
}
}
Expand All @@ -58,7 +58,7 @@ var quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {}
imageResize: {}
}
});
```
Expand All @@ -71,7 +71,7 @@ const quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {
imageResize: {
modules: [ 'Resize', 'DisplaySize', 'Toolbar' ]
}
}
Expand All @@ -91,7 +91,7 @@ var quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {
imageResize: {
// ...
handleStyles: {
backgroundColor: 'black',
Expand All @@ -115,7 +115,7 @@ var quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {
imageResize: {
// ...
displayStyles: {
backgroundColor: 'black',
Expand All @@ -139,7 +139,7 @@ var quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {
imageResize: {
// ...
toolbarStyles: {
backgroundColor: 'black',
Expand Down Expand Up @@ -176,7 +176,7 @@ var quill = new Quill(editor, {
// ...
modules: {
// ...
ImageResize: {
imageResize: {
modules: [ MyModule, Resize ],
// ...
}
Expand Down