Project

General

Profile

Feature #17784 ยป rtehtmlarea_feature_6705.patch

Administrator Admin, 2007-11-13 22:09

View differences:

typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (working copy)
if (el.className) {
txtClass = "";
cls = el.className.trim().split(" ");
for(j = cls.length; j > 0;) {
if(!HTMLArea.reservedClassNames.test(cls[--j])) { txtClass = "." + cls[j]; }
for (j = 0; j < cls.length; ++j) {
if (!HTMLArea.reservedClassNames.test(cls[j])) {
txtClass += "." + cls[j];
}
}
txt += txtClass;
}
    (1-1/1)