MediaWiki: Common.js
De WikiAjuda
Nota: Após salvar, você pode ter que limpar o "cache" do seu navegador para ver as alterações.
- Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
- Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
- Internet Explorer: PressioneCtrl enquanto clica Recarregar, ou Pressione Ctrl-F5
- Opera: Vá para Menu → Configurações (Opera → Preferencias no Mac) e depois para Privacidade e Segurança → Limpar dados de navegação → Imagens e arquivos em cache.
$(document).ready(function () {
$(window).on("resize", function (e) {
checkScreenSize();
});
checkScreenSize();
function checkScreenSize(){
var newWindowWidth = $(window).innerWidth();
if (newWindowWidth < 481) {
$('mw-mmv-view-expanded img').each(function() {
$(this).removeClass().addClass('img-responsive center-block');
});
} else {
$('.newsection img').each(function() {
var width = $(this).width(); // Current image width
var height = $(this).height(); // Current image height
var ratio = height / width;
if(ratio > 1.5) {
$(this).removeClass().addClass('img-mobile center-block');
}
});
}
}
});