User:Borodun/common.js

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
// Скрипт добавляет новые пункты в меню в самом верху страницы (где имя участника)
$(function() {
var s=document.createElement('li');
s.id="pt-moi-ssylochki";
s.innerHTML='<a href="https://commons.wikimedia.org/w/index.php?title=Special:Upload&uploadformstyle=basic" title="загрузить">$загрузить$</a>';
var b=document.getElementById('pt-preferences');
b.parentElement.insertBefore(s,b);
});

// Проверка своего вклада - загруженных файлов на Викисклад
//importScript('User:Borodun/CommonsRing.js');
//importScript('User:Neolexx/CommonsRing.js');

// Скрипт для редактирования svg без загрузки на компьютер -- User talk:Rillke/SVGedit.js
if (mw.config.get('wgNamespaceNumber') === 6 && /SVG/i.test(mw.config.get('wgTitle').slice(-3))) // SVGedit on SVG files only
	importScript('User:Rillke/SVGedit.js');

// Высота окна редактирования
$('#wpTextbox1').attr('rows', 20);