From e31eea3268497dc048d50dfcd952a6fb89e8e388 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 29 May 2013 13:06:11 +0200 Subject: Make ssbrowser.html work in IE 10 Manual configuration page for other browsers (ssbrowser.html) doesn't work in IE 10 - error page is displayed. This patch is conditioning creation of Firefox configuration object so that configure.jar is requested only in Firefox. IE doesn't request it and so it does not fail. https://fedorahosted.org/freeipa/ticket/3645 --- install/html/ssbrowser.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/install/html/ssbrowser.html b/install/html/ssbrowser.html index 2afb0fac..72fd573c 100644 --- a/install/html/ssbrowser.html +++ b/install/html/ssbrowser.html @@ -16,7 +16,14 @@ $('.example-domain').text(domain); if ($.browser.mozilla) { - $("#configurefirefox").show(); + var ff_config = $("#configurefirefox"); + var obj = $('', { + type: 'text/html', + 'class': 'browser-config' + }); + obj.prop('data', 'jar:/ipa/errors/configure.jar!/preferences.html'); + obj.appendTo(ff_config); + ff_config.show(); } }); @@ -72,8 +79,7 @@ -- cgit