https://bugzilla.wikimedia.org/show_bug.cgi?id=25378

Yaron Koren <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #9 from Yaron Koren <[email protected]> ---
Some users of the Semantic Forms extension just experienced this problem - they
couldn't use SF on their internal wiki with IE10, because IE10 has the
"compatibility view" turned on by default for intranet sites, and with the
compatibility view the (jQuery-based) JavaScript of SF stopped working.

Anyway, modifying the file /includes/OutputPage.php in the following way fixed
it:

Below these lines, around line 2520:

                $openHead = Html::openElement( 'head' );
                if ( $openHead ) {
                        # Don't bother with the newline if $head == ''
                        $ret .= "$openHead\n";
                }

...add the following line:

                $ret .= Html::element( 'meta', array( 'http-equiv' =>
'X-UA-Compatible', 'content' => 'IE=10; IE=9; IE=8; IE=7; IE=EDGE' ) );


I don't know if the stuff besides "IE=EDGE" is necessary - that's what I found
online. I do know that it's important to have this be the first <meta> tag;
otherwise it apparently won't work - see here:
http://twigstechtips.blogspot.com/2010/03/css-ie8-meta-tag-to-disable.html.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to