۵٬۱۲۰
ویرایش
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
خط ۲۰۱: | خط ۲۰۱: | ||
$('html, body').animate({ scrollTop: 0 }, 500); | $('html, body').animate({ scrollTop: 0 }, 500); | ||
} | } | ||
function getSize() { | |||
size = $( "p" ).css( "font-size" ); | |||
size = parseInt(size, 10); | |||
} | |||
function fontsizeup() { | |||
// parse font size, if less than 50 increase font size | |||
if ((size + 2) <= 50) { | |||
$( "p" ).css( "font-size", "+=2" ); | |||
} | |||
} | |||
function fontsizedown() { | |||
if ((size - 2) >= 12) { | |||
$( "p" ).css( "font-size", "-=2" ); | |||
} | |||
} | |||
/** | /** | ||
خط ۲۱۶: | خط ۲۳۴: | ||
$("<button id='collsidebar'></button>") | $("<button id='collsidebar'></button>") | ||
.prop( "title", msg.toggleTabTitle ) | .prop( "title", msg.toggleTabTitle ) | ||
.click( toggle ) | .click( toggle ) | ||
.insertAfter("#mw-panel"); | .insertAfter("#mw-panel"); | ||
خط ۲۲۲: | خط ۲۳۹: | ||
$("<button id='totop'></button>") | $("<button id='totop'></button>") | ||
.prop( "title", "بازگشت به بالا" ) | .prop( "title", "بازگشت به بالا" ) | ||
.click( totop ) | .click( totop ) | ||
.insertAfter("#mw-panel"); | |||
$("<button id='fontsizeup'></button>") | |||
.prop( "title", "افزایش اندازه قلم" ) | |||
.click( fontsizeup ) | |||
.insertAfter("#mw-panel"); | .insertAfter("#mw-panel"); | ||
$("<button id='fontsizedown'></button>") | |||
.prop( "title", "کاهش اندازه قلم" ) | |||
.click( fontsizedown ) | |||
.insertAfter("#mw-panel"); | |||
/* | /* | ||
// Respect the saved state. | // Respect the saved state. |
ویرایش