User:Jdlrobson/global.js: Difference between revisions
Appearance
From Meta, a Wikimedia project coordination wiki
Line 16:
Line 16:
(function () {
(function () {
const c = document.documentElement.classList;
const c = document.documentElement.classList;
if ( mw.user.options.values['(削除) vector (削除ここまで)-theme'] === 'day' ) return;
if ( mw.user.options.values[(追記) mw.config.get('skin') + (追記ここまで)'-theme'] === 'day' ) return;
if ( c.contains( 'skin-night-mode-page-disabled' ) || c.contains( 'skin-theme-clientpref--excluded' ) ) {
if ( c.contains( 'skin-night-mode-page-disabled' ) || c.contains( 'skin-theme-clientpref--excluded' ) ) {
c.remove( 'skin-night-mode-page-disabled' );
c.remove( 'skin-night-mode-page-disabled' );
Revision as of 02:01, 29 May 2024
mw.trackSubscribe('resourceloader.exception',function(topic,data){ alert(topic+JSON.stringify(data)); $('body').addClass('user-jdlrobson-error'); }); // setup the global error handler mw.trackSubscribe('global.error',function(topic,error){ alert(JSON.stringify(error));alert(topic); $('body').addClass('user-jdlrobson-error'); }); mw.trackSubscribe('global.error',console.log.bind(console)) mw.loader.load('https://en.wikipedia.org/w/index.php?title=User:Jdlrobson/readingList.js&action=raw&ctype=text/javascript'); (function(){ constc=document.documentElement.classList; if(mw.user.options.values[mw.config.get('skin')+'-theme']==='day')return; if(c.contains('skin-night-mode-page-disabled')||c.contains('skin-theme-clientpref--excluded')){ c.remove('skin-night-mode-page-disabled'); c.remove('skin-theme-clientpref--excluded'); c.add('skin-theme-clientpref-night'); constbtn=document.createElement('button'); btn.textContent='restore day theme'; btn.setAttribute('style','position: fixed; bottom: 0; right: 0;'); document.body.appendChild(btn); btn.addEventListener('click',()=>{ c.add('skin-night-mode-page-disabled'); c.remove('skin-theme-clientpref-night'); }); } }());