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

بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
خط ۲۰۱: خط ۲۰۱:
$('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() {
function fontsizeup() {
  // parse font size, if less than 50 increase font size
var fontSize = parseInt($(this).css("font-size"));
  getSize();
    fontSize = fontSize + 1 + "px";
  $( "p" ).css( "font-size", "+=2" );
    $('p').css({'font-size':fontSize});
}
}


function fontsizedown() {
function fontsizedown() {
getSize();
var fontSize = parseInt($(this).css("font-size"));
$( "p" ).css( "font-size", "-=2" );
fontSize = fontSize - 1 + "px";
$('p').css({'font-size':fontSize});
}
}
*/


/**
/**
خط ۲۴۴: خط ۲۳۸:
$("<button id='fontsizeup'></button>")
$("<button id='fontsizeup'></button>")
.prop( "title", "افزایش اندازه قلم" )
.prop( "title", "افزایش اندازه قلم" )
//.click( fontsizeup )
.click( fontsizeup )
.insertAfter("#mw-panel");
.insertAfter("#mw-panel");


$("<button id='fontsizedown'></button>")
$("<button id='fontsizedown'></button>")
.prop( "title", "کاهش اندازه قلم" )
.prop( "title", "کاهش اندازه قلم" )
//.click( fontsizedown )
.click( fontsizedown )
.insertAfter("#mw-panel");
.insertAfter("#mw-panel");
خط ۲۸۵: خط ۲۷۹:
mw.loader.using( "jquery.client", main );
mw.loader.using( "jquery.client", main );


$("#fontsizeup").click(function() {
    var fontSize = parseInt($(this).css("font-size"));
    fontSize = fontSize + 1 + "px";
    $('p').css({'font-size':fontSize});
});
$("#fontsizedown").click(function() {
    var fontSize = parseInt($(this).css("font-size"));
    fontSize = fontSize - 1 + "px";
    $('p').css({'font-size':fontSize});
});
})( jQuery );
})( jQuery );