Timwi wrote:
Simetrical wrote:
Pretty soon, likely within the next week, I'll be moving all accesskeys and tooltips out of Monobook.js and implement them server-side.
Speaking of accesskeys, is there a complete list of them somewhere? Seems like an obvious gap in the documentation (couldn't find anything on meta or on mediawiki.org).
Under the current ta array system, you can generate a list using JavaScript...
var list=""; for(var id in ta) { list = list + id + ": (" + ta[id][0] + ", " + ta[id][1] + ")\n "; }