From 1ebe53a76fc1b7bc88955cb9bdcf0f1ff2e2cd12 Mon Sep 17 00:00:00 2001
From: Alexander Opitz <opitz.alexander@googlemail.com>
Date: Thu, 18 Aug 2016 17:50:02 +0200
Subject: [PATCH] [BUGFIX] Fix maximum height of preview links dialog

If there are many previewable languages on one page the modal dialog
now will have a scroll bar for more than 4 entries, so it doesn't
break the UI any more.

Add 'modal-inner-scroll' class to modal 'show' call to let the
JS framework handle the maximum height / scroll behavior.

Resolves: #69637
Releases: master, 7.6
Change-Id: I59f91c4364d0d611c5822492b9ace513b1a45a33
Reviewed-on: https://review.typo3.org/49511
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Gianluigi Martino <gmartino27@gmail.com>
Tested-by: Gianluigi Martino <gmartino27@gmail.com>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
---
 .../sysext/workspaces/Resources/Public/JavaScript/Backend.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js b/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js
index 5537f25cdeea..10f44de0dd0d 100644
--- a/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js
+++ b/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js
@@ -1119,7 +1119,7 @@ define([
 			])
 		).done(function(response) {
 			var result = response[0].result,
-				$list = $('<dl />');
+			$list = $('<dl />');
 
 			$.each(result, function(language, url) {
 				$list.append(
@@ -1142,7 +1142,8 @@ define([
 					trigger: function() {
 						Modal.currentModal.trigger('modal-dismiss');
 					}
-				}]
+				}],
+				['modal-inner-scroll']
 			);
 		});
 	};
-- 
GitLab