User:Sanbeg/monobook.js

From Wikisource
Jump to navigation Jump to search
Note: After saving, changes may not occur immediately. Click here to learn how to bypass your browser's cache.
  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Cmd-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (Cmd-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences

For details and instructions about other browsers, see Wikipedia:Bypass your cache.

/***
// Script from [[User:Sanbeg/vfd_NavBar.js]]
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikisource.org/w/index.php?title=User:Sanbeg/vfd_NavBar.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
//more recently (9/2007) taken from wikipedia
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikisource.org/w/index.php?title=User:Sanbeg/Collapse.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
***/
 if (mwCustomEditButtons) {
 mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://en.wikisource.org/skins-1.5/common/images/button_link.png",
     "speedTip": "piped link",
     "tagOpen": '[[',
     "tagClose": '|]]',
     "sampleText": "Insert link here"};
};

//experiment with popup title.
function poplinkTitle() {
  var list=document.getElementsByTagName('div');
  for (i=0; i<list.length; ++i) {
    l=list[i];
    if (l.className == 'poplink-title') {
	//text=l.firstChild.nodeValue;
	text=l.getElementsByTagName('small')[0].firstChild.nodeValue;
	l.getElementsByTagName('a')[0].title=text;
    }
  }
}

$(poplinkTitle);