User:MetalManeMc/vector.js: Difference between revisions
Jump to navigation
Jump to search
MetalManeMc (talk | contribs) No edit summary |
MetalManeMc (talk | contribs) No edit summary |
||
Line 16: | Line 16: | ||
$(portletLink).find('a').click(function(e) { | $(portletLink).find('a').click(function(e) { | ||
e.preventDefault(); | e.preventDefault(); | ||
if (mw.user.options.get('theme')==='dark-grey') { | if (mw.user.options.get('theme')==='dark-grey') { | ||
var params = { | var params = { | ||
Line 32: | Line 31: | ||
format: 'json' | format: 'json' | ||
}; | }; | ||
mw.loader.using(['ext.gadget. | mw.loader.using(['ext.gadget.darkvector']).then(function() { | ||
$('body').addClass('theme-dark-grey'); | |||
$('body').removeClass('theme-light'); | |||
}); | }); | ||
} | } | ||
new mw.Api().postWithToken( 'csrf', params ).done( function ( data ) {}); | new mw.Api().postWithToken( 'csrf', params ).done( function ( data ) {}); | ||
}); | }); |
Revision as of 13:45, 20 December 2023
/**
* Toggle for dark mode testing
* Inspired from https://minecraft.wiki/w/MediaWiki:Gadget-darkmode.js
*/
portletLink = mw.util.addPortletLink(
'p-personal',
'',
'',
'pt-dm-toggle',
'Preview in light mode',
null,
$('#pt-userpage, #pt-anonuserpage, #pt-createaccount')[0]
);
$(portletLink).find('a').click(function(e) {
e.preventDefault();
if (mw.user.options.get('theme')==='dark-grey') {
var params = {
action: 'options',
change: 'theme=light',
format: 'json'
};
$('body').addClass('theme-light')
$('body').removeClass('theme-dark-grey')
}
else {
var params = {
action: 'options',
change: 'theme=dark-grey',
format: 'json'
};
mw.loader.using(['ext.gadget.darkvector']).then(function() {
$('body').addClass('theme-dark-grey');
$('body').removeClass('theme-light');
});
}
new mw.Api().postWithToken( 'csrf', params ).done( function ( data ) {});
});