contenteditable-utilities
v0.1.8
Published
Utilities for contenteditable
Downloads
1
Maintainers
Readme
Contenteditable Utilities
Installation
npm install contenteditable-utilities
Usage
import ContentEditable from 'contenteditable-utilities';
// const ContentEditable = require('contenteditable-utilities');
new ContentEditable({
element: dummyElement,
options: {
onBlur: (value) => {
console.log(value);
}
}
});
value should be valid
Tests
npm test
Contributing
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.