Index: trunk/phase3/skins/common/mwsuggest.js |
— | — | @@ -50,18 +50,15 @@ |
51 | 51 | window.os_enabled = true; |
52 | 52 | |
53 | 53 | /** |
54 | | - * <datalist> is a new HTML5 element that allows you to manually supply |
55 | | - * suggestion lists and have them rendered according to the right platform |
56 | | - * conventions. Opera as of version 11 has a fatal problem: the suggestion |
57 | | - * lags behind what the user types by one keypress. (Reported as DSK-276870 to |
58 | | - * Opera's secret bug tracker.) However, Firefox 4 supports it without |
59 | | - * problems, so Opera is just blacklisted here. Ideally we wouldn't blacklist |
60 | | - * future versions, in case they fix it, but the fallback isn't bad at all and |
61 | | - * the failure if they don't fix it is very annoying, so in this case we'll |
62 | | - * blacklist future versions too. |
| 54 | + * <datalist> is a new HTML5 element that allows you to manually |
| 55 | + * supply suggestion lists and have them rendered according to the |
| 56 | + * right platform conventions. Opera as of version 11 has a fatal |
| 57 | + * problem: the suggestion lags behind what the user types by one |
| 58 | + * keypress. (Reported as DSK-276870 to Opera's secret bug tracker.) |
| 59 | + * There are also problems with other browsers, including Firefox and |
| 60 | + * Safari: See bug 31602 for details. |
63 | 61 | */ |
64 | | -window.os_use_datalist = 'list' in document.createElement( 'input' ) |
65 | | - && $.client.profile().name != 'opera'; |
| 62 | +window.os_use_datalist = false; |
66 | 63 | |
67 | 64 | /** Timeout timer class that will fetch the results */ |
68 | 65 | window.os_Timer = function( id, r, query ) { |
Index: trunk/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -95,8 +95,6 @@ |
96 | 96 | create a page or new section. |
97 | 97 | * (bug 8130) Query pages should limit to content namespaces, not just main |
98 | 98 | namespace. |
99 | | -* Search suggestions (other than in the Vector skin) will now use the HTML5 |
100 | | - datalist feature where supported, currently only Firefox 4. |
101 | 99 | * Special:Contribs now redirects to Special:Contributions. |
102 | 100 | * (bug 6672) Images are now autorotated according to their EXIF orientation. |
103 | 101 | This only affects thumbnails; the source remains unrotated. |
Index: trunk/phase3/resources/Resources.php |
— | — | @@ -719,7 +719,7 @@ |
720 | 720 | 'scripts' => 'common/mwsuggest.js', |
721 | 721 | 'remoteBasePath' => $GLOBALS['wgStylePath'], |
722 | 722 | 'localBasePath' => $GLOBALS['wgStyleDirectory'], |
723 | | - 'dependencies' => array( 'mediawiki.legacy.wikibits', 'jquery.client' ), |
| 723 | + 'dependencies' => 'mediawiki.legacy.wikibits', |
724 | 724 | 'messages' => array( 'search-mwsuggest-enabled', 'search-mwsuggest-disabled' ), |
725 | 725 | ), |
726 | 726 | 'mediawiki.legacy.preview' => array( |