Bug 216564 Editor does not remove blank image title r=brade sr=rbs
This commit is contained in:
Родитель
0d9d5affee
Коммит
bcbe7de8a5
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче