editor.js/plugins/code/code.js
Peter Savchenko e71a12401a Refactoring (#144)
* codex -> codex.editor

* ESlint code style

* Code lint

* fix inline module 'this' call

* fixed toolbox leaf

* removed empty spaces

* caret module code improved
2017-02-01 20:25:59 +03:00

59 lines
1,020 B
JavaScript

/**
* Code Plugin\
* Creates code tag and adds content to this tag
*/
var code = (function(code) {
var baseClass = "ce-code";
/**
* Make initial header block
* @param {object} JSON with block data
* @return {Element} element to append
*/
var make_ = function (data) {
var tag = codex.editor.draw.node('CODE', [baseClass], {});
if (data && data.text) {
tag.innerHTML = data.text;
}
tag.contentEditable = true;
return tag;
};
/**
* Method to render HTML block from JSON
*/
code.render = function (data) {
return make_(data);
};
/**
* Method to extract JSON data from HTML block
*/
code.save = function (blockContent){
var data = {
text : blockContent.innerHTML
};
return data;
};
code.validate = function(data) {
if (data.text.trim() == '')
return;
return true;
};
return code;
})({});