* (bug 8719) Firefox release notes lie! Fix tooltips for Firefox 2 on x11;
authorBrion Vibber <brion@users.mediawiki.org>
Mon, 22 Jan 2007 17:59:43 +0000 (17:59 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Mon, 22 Jan 2007 17:59:43 +0000 (17:59 +0000)
  accesskeys default settings appear to be same as Windows.

RELEASE-NOTES
includes/DefaultSettings.php
skins/common/wikibits.js

index 30fbf68..f92d020 100644 (file)
@@ -141,6 +141,8 @@ lighter making things easier to read.
   made with the new field left blank. 
 * Allow sending per-user contribution requests to "contributions" query group
 * (bug 3717) Update user count for AuthPlugin account autocreation
+* (bug 8719) Firefox release notes lie! Fix tooltips for Firefox 2 on x11;
+  accesskeys default settings appear to be same as Windows.
 
 
 == Languages updated ==
index ec85130..2042f09 100644 (file)
@@ -1109,7 +1109,7 @@ $wgCacheEpoch = '20030516000000';
  * to ensure that client-side caches don't keep obsolete copies of global
  * styles.
  */
-$wgStyleVersion = '51';
+$wgStyleVersion = '52';
 
 
 # Server-side caching:
index 27d992d..3ee6352 100644 (file)
@@ -484,9 +484,7 @@ if (is_opera) {
           || navigator.userAgent.toLowerCase().indexOf('mac') != -1
           || navigator.userAgent.toLowerCase().indexOf('konqueror') != -1 ) {
        tooltipAccessKeyPrefix = 'ctrl-';
-} else if (is_ff2_x11) {
-       tooltipAccessKeyPrefix = 'ctrl-shift-';
-} else if (is_ff2_win) {
+} else if (is_ff2_x11 || is_ff2_win) {
        tooltipAccessKeyPrefix = 'alt-shift-';
 }
 var tooltipAccessKeyRegexp = /\[(ctrl-)?(alt-)?(shift-)?(esc-)?.\]$/;