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

Материал из FIJTeam Project Wiki
Перейти к навигации Перейти к поиску
>Skull132
(Some JS by request of Burrito. Hopefully nothing implodes. (This is for adding custom classes to images automatically.))
 
>Skull132
(Test fixes.)
Строка 6: Строка 6:
         }
         }
     });
     });
});
});

Версия от 22:38, 7 мая 2018

/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
    $('img').each(function(e) {
        if (($(this).height() <= 64) && ($(this).width() <= 64)) {
            $(this).addClass('tinyimage');
        }
    });
});