MediaWiki:Mobile.js: различия между версиями
Перейти к навигации
Перейти к поиску
Tsostik (обсуждение | вклад) Новая страница: «→All JavaScript here will be loaded for users of the mobile site: $(function () { if ($('#ca-donate').length) { return; } const donate = $( '<li><a id="ca-donate" href="https://helpua.rubikus.de/#helpus" title="Помочь проекту">💙💛</a></li>' ); $('.minerva-notifications li:first').before(donate); });» Метки: с мобильного устройства из мобильной версии |
Tsostik (обсуждение | вклад) Нет описания правки Метки: с мобильного устройства из мобильной версии |
||
| Строка 5: | Строка 5: | ||
} | } | ||
const donate = $( | const donate = $( | ||
'< | '<div><a id="ca-donate" href="https://helpua.rubikus.de/#helpus" title="Помочь проекту">💙💛</a></div>' | ||
); | ); | ||
$('.minerva-notifications | $('.minerva-notifications').prepend(donate); | ||
}); | }); | ||
Версия от 20:12, 7 июня 2026
/* All JavaScript here will be loaded for users of the mobile site */
$(function () {
if ($('#ca-donate').length) {
return;
}
const donate = $(
'<div><a id="ca-donate" href="https://helpua.rubikus.de/#helpus" title="Помочь проекту">💙💛</a></div>'
);
$('.minerva-notifications').prepend(donate);
});