You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
889 B

  1. [[branding]]
  2. == `+branding+`
  3. Use the `+branding+` option to disable the "*Powered by Tiny*" link displayed in the status bar for link:{legalpages}/attribution-requirements/[product attribution].
  4. IMPORTANT: Product attribution is required for free users utilizing the Tiny Cloud infrastructure. If using {productname} under the _GNU General Public License Version 2 or later_ license, then support for the open source project would be appreciated by keeping attribution turned on in your editor. For information on {productname} attribution requirements, see: link:{legalpages}/attribution-requirements/[Logo & attribution requirements].
  5. *Type:* `+Boolean+`
  6. *Default value:* `+true+`
  7. *Possible values:* `+true+`, `+false+`
  8. === Example: using `+branding+`
  9. [source,js]
  10. ----
  11. tinymce.init({
  12. selector: 'textarea', // change this value according to your HTML
  13. branding: false
  14. });
  15. ----