diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-01-12 13:42:29 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2012-01-12 13:42:29 +0100 |
commit | ba0fc4fa20067528effd4802e53ceeb959640825 (patch) | |
tree | 4f62217349d3afa39dbba3f7e19dac0aecb344f6 /skins/common | |
parent | ca32f08966f1b51fcb19460f0996bb0c4048e6fe (diff) |
Update to MediaWiki 1.18.1
Diffstat (limited to 'skins/common')
-rw-r--r-- | skins/common/images/sort_both.gif | bin | 0 -> 1184 bytes | |||
-rw-r--r-- | skins/common/images/sort_down.gif | bin | 0 -> 464 bytes | |||
-rw-r--r-- | skins/common/images/sort_up.gif | bin | 0 -> 466 bytes | |||
-rw-r--r-- | skins/common/mwsuggest.js | 19 |
4 files changed, 8 insertions, 11 deletions
diff --git a/skins/common/images/sort_both.gif b/skins/common/images/sort_both.gif Binary files differnew file mode 100644 index 00000000..50ad15a0 --- /dev/null +++ b/skins/common/images/sort_both.gif diff --git a/skins/common/images/sort_down.gif b/skins/common/images/sort_down.gif Binary files differnew file mode 100644 index 00000000..d97e8285 --- /dev/null +++ b/skins/common/images/sort_down.gif diff --git a/skins/common/images/sort_up.gif b/skins/common/images/sort_up.gif Binary files differnew file mode 100644 index 00000000..488cf279 --- /dev/null +++ b/skins/common/images/sort_up.gif diff --git a/skins/common/mwsuggest.js b/skins/common/mwsuggest.js index 6971d30d..6dbce050 100644 --- a/skins/common/mwsuggest.js +++ b/skins/common/mwsuggest.js @@ -50,18 +50,15 @@ window.os_animation_timer = null; window.os_enabled = true; /** - * <datalist> is a new HTML5 element that allows you to manually supply - * suggestion lists and have them rendered according to the right platform - * conventions. Opera as of version 11 has a fatal problem: the suggestion - * lags behind what the user types by one keypress. (Reported as DSK-276870 to - * Opera's secret bug tracker.) However, Firefox 4 supports it without - * problems, so Opera is just blacklisted here. Ideally we wouldn't blacklist - * future versions, in case they fix it, but the fallback isn't bad at all and - * the failure if they don't fix it is very annoying, so in this case we'll - * blacklist future versions too. + * <datalist> is a new HTML5 element that allows you to manually + * supply suggestion lists and have them rendered according to the + * right platform conventions. Opera as of version 11 has a fatal + * problem: the suggestion lags behind what the user types by one + * keypress. (Reported as DSK-276870 to Opera's secret bug tracker.) + * There are also problems with other browsers, including Firefox and + * Safari: See bug 31602 for details. */ -window.os_use_datalist = 'list' in document.createElement( 'input' ) - && $.client.profile().name != 'opera'; +window.os_use_datalist = false; /** Timeout timer class that will fetch the results */ window.os_Timer = function( id, r, query ) { |