Enable search-replace dialog on IE 11+

The search-replace box in WikiEditor was blacklisted entirely from
MSIE, although it appears to work fine in IE 11 on Windows 8.1
and Windows 10 Tech Preview.

IE/Spartan team specifically requested a fix for this bug; looks like
it's an easy case of adjusting the blacklist with a version component...

(Note that in RTL the dialog positioning is bad, but that affects
other WikiEditor dialogs too.)

Bug: T88875
Change-Id: I4cf1eb76cc8a788cab233fe9ed04aaeba4af5725
This commit is contained in:
Brion Vibber 2015-02-19 12:55:29 -08:00
parent d67b50eeb5
commit 4f8ad57aaf

View file

@ -1098,7 +1098,7 @@ $.wikiEditor.modules.dialogs.config = {
'browsers': {
// Left-to-right languages
'ltr': {
'msie': false,
'msie': [['>=', 11]], // Known to work on 11.
'firefox': [['>=', 2]],
'opera': false,
'safari': [['>=', 3]],
@ -1106,7 +1106,7 @@ $.wikiEditor.modules.dialogs.config = {
},
// Right-to-left languages
'rtl': {
'msie': false,
'msie': [['>=', 11]], // Works on 11 but dialog positioning is cruddy.
'firefox': [['>=', 2]],
'opera': false,
'safari': [['>=', 3]],