Project

General

Profile

Bug #21867 » rtehtmlarea_bugfix_13062_typo3_4-3.patch

Administrator Admin, 2010-06-09 00:57

View differences:

typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_dam_browse_media.php (copie de travail)
}
selectedImageRef.removeAttribute("border");
}
if (document.imageData.iFloat) {
var iFloat = document.imageData.iFloat.options[document.imageData.iFloat.selectedIndex].value;
if (iFloat || selectedImageRef.style.cssFloat || selectedImageRef.style.styleFloat) {
if (document.all) {
selectedImageRef.style.styleFloat = (iFloat != "none") ? iFloat : "";
} else {
selectedImageRef.style.cssFloat = (iFloat != "none") ? iFloat : "";
}
if (document.all) {
selectedImageRef.style.styleFloat = iFloat ? iFloat : "";
} else {
selectedImageRef.style.cssFloat = iFloat ? iFloat : "";
}
}
if (classesImage && document.imageData.iClass) {
var iClass = document.imageData.iClass.options[document.imageData.iClass.selectedIndex].value;
if (iClass || (selectedImageRef.attributes["class"] && selectedImageRef.attributes["class"].value)) {
typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_select_image.php (copie de travail)
}
if (document.imageData.iFloat) {
var iFloat = document.imageData.iFloat.options[document.imageData.iFloat.selectedIndex].value;
if (iFloat || selectedImageRef.style.cssFloat || selectedImageRef.style.styleFloat) {
if (document.all) {
selectedImageRef.style.styleFloat = (iFloat != "none") ? iFloat : "";
} else {
selectedImageRef.style.cssFloat = (iFloat != "none") ? iFloat : "";
}
if (document.all) {
selectedImageRef.style.styleFloat = iFloat ? iFloat : "";
} else {
selectedImageRef.style.cssFloat = iFloat ? iFloat : "";
}
}
if (classesImage && document.imageData.iClass) {
(2-2/2)