|
|
@ -65,8 +65,9 @@ export function initImageDiff() {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$('.image-diff').each(function() {
|
|
|
|
$('.image-diff:not([data-image-diff-loaded])').each(function() {
|
|
|
|
const $container = $(this);
|
|
|
|
const $container = $(this);
|
|
|
|
|
|
|
|
$container.attr('data-image-diff-loaded', 'true');
|
|
|
|
|
|
|
|
|
|
|
|
// the container may be hidden by "viewed" checkbox, so use the parent's width for reference
|
|
|
|
// the container may be hidden by "viewed" checkbox, so use the parent's width for reference
|
|
|
|
const diffContainerWidth = Math.max($container.closest('.diff-file-box').width() - 300, 100);
|
|
|
|
const diffContainerWidth = Math.max($container.closest('.diff-file-box').width() - 300, 100);
|
|
|
|