MediaWiki:Mobile.js: различия между версиями

Новая страница: «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); });»
Метки: с мобильного устройства из мобильной версии
 
Нет описания правки
Метки: с мобильного устройства из мобильной версии
 
(не показаны 2 промежуточные версии этого же участника)
Строка 1: Строка 1:
/* All JavaScript here will be loaded for users of the mobile site */
/* 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);
});