View text source at Wikipedia
// [[User:Quarl/show_diff_since.js]] - add 'since' tab to show change since I
// last edited
// Left-click navigates asynchronously; new tab/window works as well.
// depends: wikipage.js, addlilink.js, diffsince.js
// originally based on http://en.wikipedia.org/wiki/Wikipedia:WikiProject_User_scripts/Scripts/Changes_since_I_last_edited
// from http://en.wikipedia.org/w/index.php?title=User:JesseW/monobook.js&oldid=20755510
// quarl 2006-01-16 rewritten to asynchronously download history page
// <pre><nowiki>
var showdiffsince = new Object();
showdiffsince.load = function() {
if (wikiPage.nsSpecialP) return;
var url = diffsince.makeUrl(wikiPage);
var href = '<a onclick="javascript:return showdiffsince.run()" href="'+url+'">Since</a>';
showdiffsince.tab = addlilinkX(getTabActions(), href, 'ca-since', "Show changes since I last edited");
}
showdiffsince.run = function() {
return diffsince.diffThis(showdiffsince.tab);
}
$(showdiffsince.load);
// </nowiki></pre>