Kullanıcı:Saltinbas/common.js: Revizyonlar arasındaki fark

İçerik silindi İçerik eklendi
Saltinbas (Mesaj | katkılar)
.
Pathoschild (Mesaj | katkılar)
updated scripts, migrated deprecated functions
15. satır:
break;
}
 
if (action == "add") {
var node = document.getElementById(target)
.getElementsByTagName('div')[0]
.getElementsByTagName('ul')[0];
 
var aNode = document.createElement('a');
var liNode = document.createElement('li');
 
aNode.appendChild(document.createTextNode(name));
aNode.setAttribute('href', link);
30. satır:
node.appendChild(liNode);
}
 
if (action == "remove") {
var list = document.getElementById(target)
.getElementsByTagName('div')[0]
.getElementsByTagName('ul')[0];
 
var listelements = list.getElementsByTagName('li');
 
for (var i = 0; i < listelements.length; i++) {
if (listelements[i].getElementsByTagName('a')[0].innerHTML == name ||
listelements[i].getElementsByTagName('a')[0].href == link) {
 
list.removeChild(listelements[i]);
}
}
}
 
} catch(e) {
// lets just ignore what's happened
52. satır:
}
}
 
function CustomizeModificationsOfSidebar() {
//adds [[Special:CategoryTree]] to toolbox
ModifySidebar("add", "toolbox", "CategoryTree", "http://tr.wiktionary.org/wiki/%C3%96zel:CategoryTree");
}
 
addOnloadHook$(CustomizeModificationsOfSidebar);
 
 
/*************
** * Ajax sysop
* @see https://github.com/Pathoschild/Wikimedia-contrib#user-scripts
*** by [[m:user:Pathoschild]] <http://meta.wikimedia.org/wiki/User:Pathoschild/Scripts/Ajax_sysop>
* @update-token [[File:pathoschild/ajaxsysop.js]]
*************/
*/
importScriptURI('http://meta.wikimedia.org/w/index.php?title=User:Pathoschild/Scripts/Ajax_sysop.js&action=raw&ctype=text/javascript');
mw.loader.load('//tools-static.wmflabs.org/meta/scripts/pathoschild.ajaxsysop.js');