yiidoc / yii2-redactor

Extension Redactor WYSIWYG for Yii2 framework
BSD 3-Clause "New" or "Revised" License
187 stars 87 forks source link

formattingAdd Not working #77

Closed arun-maddheshia closed 6 years ago

arun-maddheshia commented 6 years ago

I trying to add a formating tag the tag is visible but class didn't add on click.

"formattingAdd" => [
  "red-p-add" => [
      "title" => 'Red Block Add',
      "args" => ['p', 'class', 'red-styled'],
  ]
]
arun-maddheshia commented 6 years ago

Fixed it by using this format

"formattingAdd" => [
    [
        "tag" => 'p',
        "title" => 'Large Title',
        "class" => 'title--style--large',
        "clear" => 'toggle'
    ],
    [
        "tag" => 'p',
        "title" => 'Medium Title',
        "class" => 'title--style--medium',
        "clear" => 'toggle'
    ],
]