TinyMCE:Configuration/class filter
From Moxiecode Documentation Wiki
[edit]
Option: class_filter
(Requires: 3.0)
This option enables you specify a function that all classes will be passed though when the auto import classes feature is used with TinyMCE.
[edit]
Example of usage of the class_filter option:
tinyMCE.init({
...
class_filter : function(cls, rule) {
// Block the someClass
if (cls == 'someClass')
return false;
// Swap the otherClass
if (cls == 'otherClass')
return 'someOtherClass';
// Skip classes that are inside id like #id .myclass
if (/^#.*/.test(rule))
return false;
// Pass though the rest
return cls;
}
});
