TinyMCE: restore support for <script>
tags.
See #33083. git-svn-id: https://develop.svn.wordpress.org/trunk@33414 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
cac1d55621
commit
45e535b23d
@ -485,8 +485,13 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
editor.on( 'preInit', function() {
|
editor.on( 'preInit', function() {
|
||||||
// Don't replace <i> with <em> and <b> with <strong> and don't remove them when empty
|
var validElementsSetting = '@[id|accesskey|class|dir|lang|style|tabindex|' +
|
||||||
editor.schema.addValidElements( '@[id|accesskey|class|dir|lang|style|tabindex|title|contenteditable|draggable|dropzone|hidden|spellcheck|translate],i,b' );
|
'title|contenteditable|draggable|dropzone|hidden|spellcheck|translate],' + // Global attributes.
|
||||||
|
'i,' + // Don't replace <i> with <em> and <b> with <strong> and don't remove them when empty.
|
||||||
|
'b,' +
|
||||||
|
'script[src|async|defer|type|charset|crossorigin|integrity]'; // Add support for <script>.
|
||||||
|
|
||||||
|
editor.schema.addValidElements( validElementsSetting );
|
||||||
|
|
||||||
if ( tinymce.Env.iOS ) {
|
if ( tinymce.Env.iOS ) {
|
||||||
editor.settings.height = 300;
|
editor.settings.height = 300;
|
||||||
|
Loading…
Reference in New Issue
Block a user