responsive

Type: String

Default: embed-responsive

This setting allows you to change the class that can be added when inserting a responsive video.

RedactorX('#entry', {
    embed: {
        responsive: 'my-responsive-video'
    }
});

checkbox

Type: Boolean

Default: false

This setting turns on the responsive video checkbox.

RedactorX('#entry', {
    embed: {
        checkbox: true
    }
});

script

Type: Boolean

Default: true

This setting removes the script tag when inserting embed code.

RedactorX('#entry', {
    embed: {
        script: false
    }
});

disable

You can completely disable embed adding, for this, set the setting to false.

RedactorX('#entry', {
    embed: false
});