From c95e7c245e8a3de35fdaeb53c8f83fecb9314e13 Mon Sep 17 00:00:00 2001 From: arknu Date: Fri, 7 Mar 2014 22:24:28 +0100 Subject: [PATCH] U4-3691: Use empty alt text instead of 'Some description' --- .../src/common/services/tinymce.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js b/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js index a5eb08da98..df820d9647 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js @@ -92,7 +92,7 @@ function tinyMceService(dialogService, $log, imageHelper, $http, $timeout, macro if (img) { var imagePropVal = imageHelper.getImagePropertyValue({ imageModel: img, scope: $scope }); var data = { - alt: "Some description", + alt: "", src: (imagePropVal) ? imagePropVal : "nothing.jpg", id: '__mcenew' };