View source for MediaWiki:Common.js
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
var config = mw.config.values;
// Load personal JS if any
importScript('User:'+config.wgUserName+'/common.js');
// Load site JS
importScript('MediaWiki:BetterUpload.js');
// Add navigational keybinds
mw.hook('wikipage.content').add(function(){
var actions = {
e: 'edit',
h: 'history',
m: 'move',
d: 'delete',
};
if (config.wgAction=='view') {
var newUrl = new URL(document.location.href);
$(document).on('keydown', function(e) {
var key = e.key.toLocaleLowerCase();
000
1:0
Return to MediaWiki:Common.js.