Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -258,6 +258,7 @@ |
259 | 259 | * (bug 34600) Older skins using useHeadElement=false were broken in 1.18. |
260 | 260 | * (bug 34604) [mw.config] wgActionPaths should be an object instead of a numeral |
261 | 261 | array. |
| 262 | +* (bug 29753) mw.util.tooltipAccessKeyPrefix should be alt-shift for Chrome on Windows |
262 | 263 | |
263 | 264 | === API changes in 1.19 === |
264 | 265 | * Made action=edit less likely to return "unknownerror", by returning the actual error |
Index: trunk/phase3/resources/mediawiki/mediawiki.util.js |
— | — | @@ -29,9 +29,17 @@ |
30 | 30 | |
31 | 31 | // Chrome on any platform |
32 | 32 | } else if ( profile.name === 'chrome' ) { |
33 | | - // Chrome on Mac or Chrome on other platform ? |
34 | | - util.tooltipAccessKeyPrefix = ( profile.platform === 'mac' |
35 | | - ? 'ctrl-option-' : 'alt-' ); |
| 33 | + |
| 34 | + util.tooltipAccessKeyPrefix = ( |
| 35 | + // Chrome on Mac |
| 36 | + profile.platform === 'mac' ? 'ctrl-option-' : |
| 37 | + // Chrome on Windows |
| 38 | + // (both alt- and alt-shift work, but alt-f triggers Chrome wrench menu |
| 39 | + // which alt-shift-f does not) |
| 40 | + profile.platform === 'win' ? 'alt-shift-' : |
| 41 | + // Chrome on Ubuntu (and other?) |
| 42 | + 'alt-' |
| 43 | + ); |
36 | 44 | |
37 | 45 | // Non-Windows Safari with webkit_version > 526 |
38 | 46 | } else if ( profile.platform !== 'win' |