summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
Diffstat (limited to 'skins')
-rw-r--r--skins/common/images/sort_both.gifbin0 -> 1184 bytes
-rw-r--r--skins/common/images/sort_down.gifbin0 -> 464 bytes
-rw-r--r--skins/common/images/sort_up.gifbin0 -> 466 bytes
-rw-r--r--skins/common/mwsuggest.js19
4 files changed, 8 insertions, 11 deletions
diff --git a/skins/common/images/sort_both.gif b/skins/common/images/sort_both.gif
new file mode 100644
index 00000000..50ad15a0
--- /dev/null
+++ b/skins/common/images/sort_both.gif
Binary files differ
diff --git a/skins/common/images/sort_down.gif b/skins/common/images/sort_down.gif
new file mode 100644
index 00000000..d97e8285
--- /dev/null
+++ b/skins/common/images/sort_down.gif
Binary files differ
diff --git a/skins/common/images/sort_up.gif b/skins/common/images/sort_up.gif
new file mode 100644
index 00000000..488cf279
--- /dev/null
+++ b/skins/common/images/sort_up.gif
Binary files differ
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 ) {