Bug 216564 Editor does not remove blank image title r=brade sr=rbs

This commit is contained in:
neil%parkwaycc.co.uk 2003-09-14 14:20:06 +00:00
Родитель 0d9d5affee
Коммит bcbe7de8a5
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -524,7 +524,11 @@ function ValidateImage()
var src = TrimString(gDialog.srcInput.value);
globalElement.setAttribute("src", src);
globalElement.setAttribute("title", TrimString(gDialog.titleInput.value));
var title = TrimString(gDialog.titleInput.value);
if (title)
globalElement.setAttribute("title", title);
else
globalElement.removeAttribute("title");
// Force user to enter Alt text only if "Alternate text" radio is checked
// Don't allow just spaces in alt text