Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/** * ajaxWatchlist.js * * A watchlist that automatically updates, so you can * spend less time refreshing and more time... er, * doing whatever you do. * * @author Theopolisme * @author He7d3r */(function($,mw){"use strict";varjqxhr,interval,$ajaxWatchlist;functionupdateWatchlist(){var$loadingIndicator=$('.watchlistLoadingIndicator'),$content=$('#mw-content-text');$ajaxWatchlist=$('#ajaxWatchlist');// If this is the first time we run the script, wrap everything// after and including the watchlist form in a div with the id// "ajaxWatchlist".if($ajaxWatchlist.length===0){$content.find('#mw-watchlist-form').nextAll().addBack().wrapAll('<div id="ajaxWatchlist"></div>');$ajaxWatchlist=$('#ajaxWatchlist').hover(function(){jqxhr.abort();clearInterval(interval);},function(){interval=setInterval(updateWatchlist,window.watchlistUpdateFrequency||20000);});}// Create a new loading indicator if it doesn't already// exist. If it already exists, just show it.if($loadingIndicator.length===0){$loadingIndicator=$('<span>').appendTo('.firstHeading').addClass('watchlistLoadingIndicator').append($.createSpinner({size:'medium',type:'inline'}),' Updating watchlist...');}else{$loadingIndicator.show();}// Make the ajax request to actually update the watchlistjqxhr=$.ajax({url:___location.href,dataType:'html'}).done(function(data){// If the watchlist contents have changed, update the page// to display the new contents.var$newContent=$(data).find('#mw-content-text #mw-watchlist-form').nextAll().addBack();// Same selector as $ajaxWatchlistif($ajaxWatchlist.text()!==$newContent.text()){$ajaxWatchlist.empty().append($newContent);mw.hook('wikipage.content').fire($ajaxWatchlist);// So scripts will run on the updated content}$loadingIndicator.hide();}).fail(function(jqXHR,textStatus){// Hide the indicator and then display an error notification$loadingIndicator.hide();if(textStatus!=='abort'){mw.notify('ajaxWatchlist: Unable to automatically update watchlist.');}});}if(mw.config.get('wgCanonicalSpecialPageName')==='Watchlist'){mw.loader.using(['mediawiki.util','jquery.spinner'],function(){// Add custom css for the loading indicatormw.util.addCSS('.watchlistLoadingIndicator { float: right; font-size: 12px; } ');// Run updateWatchlist() every 20 seconds by default (can be configured via window.watchlistUpdateFrequency)interval=setInterval(updateWatchlist,window.watchlistUpdateFrequency||20000);});}}(jQuery,mediaWiki));