Web Component: j-ContentEditable
j-ContentEditable
- easy usage
- supports great features
- works with Bootstrap Grid System
- easy for customization
- supports basic shortcuts
CMD+B
bold,CMD+U
underline,CMD+I
italic andCMD+L
creates a link
Attributes:
data-required="true"
optional, defaultfalse
data-clipboard="text/plain"
optional, defaulttext/plain
(for support ofhtml
usetext/html
)
Methods:
component.getNode()
returns a selectnode
in text{Object}
component.getSelection()
returns a current selection{String}
component.insert(value, [encode])
inserts a custom HTML or PLAIN text to the current cursor position,encode
(optional) is by defaultfalse
component.exec('Bold', false, null)
has same functionality asdocument.execCommand()
Handlers:
component.event(type, value)
handles all events from the editor.
type = bold - when a text is bolded (value is boolean)
type = italic - when a text is italic (value is boolean)
type = underline - when a text is underlined (value is boolean)
type = link - when a link is created (value is a temporary URL)
type = current - when a current element is changed in the text (value is NODE)
type = paste - when the clipboard is used (value is a clipboard value)
type = select - when a text is selected (value is selected text)
type = focus - editor is focused (value is undefined)
type = blur - editor is not focused (value is undefined)
type = click - click on the specific element in the text (value is NODE)
Default declaration:
self.event = function(type, value) {
if (type === 'paste')
self.insert(value, true);
};
Author
- Peter Širka petersirka@gmail.com
- License
Created
12. may 2016
Updated
25. january 2023
Version
v1
License
https://www.totaljs.com/license/
Responsive
Yes
Author
Peter Širka
Email
petersirka@gmail.com