Mudanças entre as edições de "MediaWiki: Common.js"

De WikiAjuda
Ir para: navegação, pesquisa
Linha 6: Linha 6:
 
     checkScreenSize();
 
     checkScreenSize();
  
     if(mw.config(wgIsMainPage) === true) mainPageLayout();
+
     if(mw.config(wgIsMainPage) === true) {
 +
    mainPageLayout();
 +
    }
  
 
});
 
});

Edição das 16h29min de 9 de maio de 2020

$(document).ready(function () {
    $(window).on("resize", function (e) {
        checkScreenSize();
    });

    checkScreenSize();

    if(mw.config(wgIsMainPage) === true) {
     mainPageLayout();
    }

});

function checkScreenSize(){
    var newWindowWidth = $(window).innerWidth();
    // <!-- adjust mobile screen width here -->
    if (newWindowWidth < 481) {
        $('.newsection img').each(function() {
             $(this).removeClass().addClass('img-responsive center-block').css('visibility','visible').fadeIn();
        });
    } else {
        $('.newsection img').each(function() {
              var width = $(this).width(); 
              var height = $(this).height(); 
              var ratio = height / width;
              // <!-- adjust mobile screenshot ratio -->
              if(ratio > 1.5) {
                  $(this).removeClass().addClass('img-mobile center-block').css('visibility','visible').fadeIn();
              } else {
                  $(this).removeClass().addClass('img-responsive center-block').css('visibility','visible').fadeIn();
              }
        });
    }
}

function mainPageLayout() {
       $('.sidebar-wrapper').remove(); 
       $('role=["main"]').toggleClass('col-md-9 col-md-12');
}