[DE] Fix Bug 34059

This commit is contained in:
Alexander Yuzhin 2017-02-14 17:14:45 +03:00
parent 73b431255a
commit b2040b6d3c

View file

@ -371,7 +371,7 @@ define([
_uiTransformByWrap: function(type) {
$('.image-wrap .align')[('inline' == type) ? 'hide' : 'show']();
$('.image-wrap .distance')[('behind' == type || 'infront' == type) ? 'hide' : 'show']();
$('.image-wrap .distance')[('inline' == type || 'behind' == type || 'infront' == type) ? 'hide' : 'show']();
$('#edit-image-movetext').toggleClass('disabled', ('inline' == type));
},