Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 986 Bytes

File metadata and controls

38 lines (27 loc) · 986 Bytes

help_accessibility

When the Help plugin is loaded, the {productname} editor displays the keyboard shortcut for accessing the Help dialog in the {productname} status bar by default.

The help_accessibility option allows for this display to be turned off.

Type: Boolean

Default value: true

Possible values: true, false

Example: turning help_accessibility off

tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "help",
  help_accessibility: false,
});

Example: explicitly turning help_accessibility on

The help_accessibility option is set to true by default when the Help plugin is loaded.

It is not necessary, but may be useful, to explicitly set the option to true.

tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "help",
  help_accessibility: true,
});