Корбар:Aidan Kehoe/monobook.js: Тафовут байни таҳрирҳо

Мавод аз Википедиа — донишномаи озод
Content deleted Content added
I'd prefer the languages at the top, and visible, most of the time.
Toolbox second.
Сатри 25: Сатри 25:
menu_names = [
menu_names = [
"p-lang",
"p-lang",
"p-search", // search box
"p-tb", // toolbox
"p-tb", // toolbox
"p-search", // search box
];
];
while ( menu_name = menu_names.pop() ) {
while ( menu_name = menu_names.pop() ) {

Нусха 17:41, 12 ноябри 2009

// [[User:Zocky/PicturePopups.js]]
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Zocky/PicturePopups.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 
// [[User:Zocky/LanguageLinks.js]]
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Zocky/LanguageLinks.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Blue-Haired_Lawyer/footnote_popups.js'
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');


function menu_move_to_top(menu_name) {
   menu = document.getElementById(menu_name);
   if (menu) {
      p = menu.parentNode;
      p.removeChild(menu);
      p.insertBefore( menu, p.firstChild );
   }
}
addOnloadHook(function (){
   menu_names = [
      "p-lang",
      "p-tb", // toolbox
      "p-search", // search box
      ];
   while ( menu_name = menu_names.pop() ) {
      menu_move_to_top(menu_name);
   }
});