۵٬۱۲۰
ویرایش
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
خط ۲۰۱: | خط ۲۰۱: | ||
$('html, body').animate({ scrollTop: 0 }, 500); | $('html, body').animate({ scrollTop: 0 }, 500); | ||
} | } | ||
function fontsizeup() { | function fontsizeup() { | ||
var fontSize = parseInt($(this).css("font-size")); | |||
fontSize = fontSize + 1 + "px"; | |||
$('p').css({'font-size':fontSize}); | |||
} | } | ||
function fontsizedown() { | function fontsizedown() { | ||
var fontSize = parseInt($(this).css("font-size")); | |||
fontSize = fontSize - 1 + "px"; | |||
$('p').css({'font-size':fontSize}); | |||
} | } | ||
/** | /** | ||
خط ۲۴۴: | خط ۲۳۸: | ||
$("<button id='fontsizeup'></button>") | $("<button id='fontsizeup'></button>") | ||
.prop( "title", "افزایش اندازه قلم" ) | .prop( "title", "افزایش اندازه قلم" ) | ||
.click( fontsizeup ) | |||
.insertAfter("#mw-panel"); | .insertAfter("#mw-panel"); | ||
$("<button id='fontsizedown'></button>") | $("<button id='fontsizedown'></button>") | ||
.prop( "title", "کاهش اندازه قلم" ) | .prop( "title", "کاهش اندازه قلم" ) | ||
.click( fontsizedown ) | |||
.insertAfter("#mw-panel"); | .insertAfter("#mw-panel"); | ||
خط ۲۸۵: | خط ۲۷۹: | ||
mw.loader.using( "jquery.client", main ); | mw.loader.using( "jquery.client", main ); | ||
})( jQuery ); | })( jQuery ); |
ویرایش