Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

TinyMceSettings.AddPlugin should take list of plugins as argument

Found in

EPiServer.CMS.TinyMce 2.1.0

Fixed in

EPiServer.CMS.TinyMce 2.1.2

(Or a related package)

Created

Apr 19, 2018

Updated

May 04, 2018

Area

CMS UI

State

Closed, Fixed and tested


Description

As a developer, I would like to add plugins to the default setting.

Before this big fix was released, if I added extra plugins, it looked like this.

config.Default()
    .AddPlugin("table")
    .AddPlugin("paste")
    .AddPlugin("spellchecker")
    .AddPlugin("searchreplace")

With this bug fix, I can use this shortened syntax.

config.Default()
    .AddPlugin("table", "paste", "spellchecker", "searchreplace")