پرش به محتوا

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

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


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