Skip to content
Snippets Groups Projects
Commit b159a458 authored by Guillaume Delhumeau's avatar Guillaume Delhumeau
Browse files

XWIKI-10986: "Loading" is not hovering the all page.

parent 0c91a998
No related branches found
No related tags found
No related merge requests found
......@@ -385,12 +385,10 @@
// Put a gray curtain in front of the iframe
var addCurtain = function() {
var iframePosition = iframe.position();
var iframeWidth = iframe.width();
var iframeHeight = iframe.height();
$("<div id=\"preview-curtain\"><h2>$services.localization.render('platform.flamingo.themes.loading')</h2></div>").insertAfter(iframe);
var previewCurtain = $("#preview-curtain");
previewCurtain.width(iframe.width());
previewCurtain.height(iframe.height());
previewCurtain.width(iframe.outerWidth(true));
previewCurtain.height(iframe.outerHeight(true));
previewCurtain.css("left", iframePosition.left);
previewCurtain.css("right", iframePosition.right);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment