Allow style tag in content of main/login messages

This commit is contained in:
Hadi Nategh
2019-03-05 14:08:19 +01:00
parent eb2cee5678
commit 1ec869538d
2 changed files with 10 additions and 3 deletions

View File

@ -70,9 +70,15 @@ var et2_htmlarea = (function(){ "use strict"; return et2_editableWidget.extend([
},
statusbar: {
name: "Status bar",
description: "Enable/disable status bar on the bottom of ediotr",
description: "Enable/disable status bar on the bottom of editor",
type: "boolean",
default: true
},
valid_children: {
name: "Valid children",
description: "Enables to control what child tag is allowed or not allowed of the present tag. For instance: +body[style], makes style tag allowed inside body",
type: "string",
default: ""
}
},
@ -143,6 +149,7 @@ var et2_htmlarea = (function(){ "use strict"; return et2_editableWidget.extend([
images_upload_handler: this.options.images_upload_handler,
init_instance_callback : jQuery.proxy(this._instanceIsReady, this),
auto_focus: false,
valid_children : this.options.valid_children,
plugins: [
"print searchreplace autolink directionality ",
"visualblocks visualchars image link media template ",