مدیاویکی:Gadget-sidebarToggle.js: تفاوت میان نسخه‌ها

بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
خط ۲۰۹: خط ۲۰۹:
function fontsizeup() {
function fontsizeup() {
   // parse font size, if less than 50 increase font size
   // parse font size, if less than 50 increase font size
  getSize();
   if ((size + 2) <= 50) {
   if ((size + 2) <= 50) {
    $( "p" ).css( "font-size", "+=2" );
  $( "p" ).css( "font-size", "+=2" );
  }
  }
}
}


function fontsizedown() {
function fontsizedown() {
  if ((size - 2) >= 12) {
getSize();
    $( "p" ).css( "font-size", "-=2" );
if ((size - 2) >= 12) {
  }
$( "p" ).css( "font-size", "-=2" );
}
}
}