Skip to content

Commit

Permalink
fix list item reference
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed May 2, 2017
1 parent fa841e2 commit dde9fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/how-to-customize-quill.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ var quill = new Quill('#editor', {
You can also extend existing formats. Here is a quick ES6 implementation of a list item that does not permit formatting its contents. Code blocks are implemented in exactly this way.

```js
var ListItem = Quill.import('blots/list/item');
var ListItem = Quill.import('formats/list/item');

class PlainListItem extends ListItem {
formatAt(index, length, name, value) {
Expand Down

0 comments on commit dde9fba

Please sign in to comment.