Skip to content
This repository has been archived by the owner on Jul 2, 2019. It is now read-only.

Module allowing you to add additional configuration elements to Magento's TinyMCE implementation.

Notifications You must be signed in to change notification settings

Superbalist/spreeza-MagentoTinyMCEConfig

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Magento TinyMCE Config

This module makes adding additional settings to the TinyMCE init call simple.

After installing the module, copy the following file

js/pulsestorm_tinymceconfig.dist.js

to

js/pulsestorm_tinymceconfig.js

Add your additional settings at the following location in the above file

var settings = this.originalGetSettings(mode);
//add any extra settings you'd like below

//makes "placeholder" a valid element for inputs
settings.extended_valid_elements = 'input[placeholder|accept|alt|checked|disabled|maxlength|name|readonly|size|src|type|value]';
return settings;

Original Article: http://alanstorm.com/magento_html5_tinymce

About

Module allowing you to add additional configuration elements to Magento's TinyMCE implementation.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 75.1%
  • JavaScript 20.9%
  • Shell 4.0%