From a2cd04e57faaccfb14db725bac4e3c6401c33273 Mon Sep 17 00:00:00 2001 From: Nadav Kavalerchik Date: Sun, 3 Jul 2016 00:30:17 +0300 Subject: [PATCH] LTR/RTL directionality suport Add dir-ltr|rtl to h5p-content div, based on iframe parent document directionality. (Which will help us address proper rtl alignment and directionality css selectors, in future patches) Fix is only needed for iframe embedding. as parent document directionality is already available to div embedding. --- js/h5p.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/h5p.js b/js/h5p.js index 5de66e2..7ec6fa4 100644 --- a/js/h5p.js +++ b/js/h5p.js @@ -111,6 +111,9 @@ H5P.init = function (target) { params: JSON.parse(contentData.jsonContent) }; + // Add dir-ltr|rtl to h5p-content div, based on iframe parent document directionality. + $element.addClass('dir-' + window.parent.document.dir); + H5P.getUserData(contentId, 'state', function (err, previousState) { if (previousState) { library.userDatas = {