MediaWiki:Vector.js
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
$(document).ready(function() {
var newItem = $('<li class="personal-version" title="Version October 2024"><a href="/index.php?title=MediaWiki:Blog" style="text-decoration: none; color: inherit;">Version: Beta 5.1</a><hr style="display:inline-block; height: 20px; bottom: 2px; width: 1px; background: linear-gradient(to bottom, #DDD7CC, #702114); border: none; margin-left: 10px; vertical-align: middle;"></li>');
$('#p-personal > div > ul').prepend(newItem); // Добавляем элемент первым в списке навигации
});
// Дождемся полной загрузки страницы
$(document).ready(function() {
// Найдем элемент Sidebar (в Vector skin это обычно div с классом 'vector-menu-portal')
var sidebar = $('#p-tb'); // Это стандартный id для Sidebar в Vector skin
if (sidebar.length) {
// Создаем новый элемент div для текста
var helpText = $('<div>')
.text('Help us!!') // Добавляем текст
.css({
'color': '#fff', // Белый цвет текста
'text-align': 'center', // Центрируем текст
'margin-top': '10px' // Добавляем отступ сверху
});
// Вставляем текст после Sidebar
sidebar.after(helpText);
}
});