MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus GMP & TEA Free
Zur Navigation springen Zur Suche springen
Zeile 9: Zeile 9:


   $("#siteTree").resizable( {
   $("#siteTree").resizable( {
     minWidth: 200, maxWidth: 464, handles: "e", stop: function() {
     minWidth: 200, maxWidth: 200, handles: "e", stop: function() {
       $("#content, #left-navigation").css("margin-left", ($(this).width()+25)+"px");
       $("#content, #left-navigation").css("margin-left", ($(this).width()+25)+"px");
       $("#p-logo a").css("width", ($(this).width())+"px");
       $("#p-logo a").css("width", ($(this).width())+"px");

Version vom 3. Februar 2022, 09:39 Uhr

$(document).ready( function() {
  var tree = $('#wikitext-sidebar');
  $('#p-logo').after( tree.html() );
  tree.remove();
  $('#siteTree').bind('fancytreeinit', function(event, data) {
        data.tree.makeTitleVisible();
        $('#siteTree').fancytree("option", "icons", false);
        });

  $("#siteTree").resizable( {
    minWidth: 200, maxWidth: 200, handles: "e", stop: function() {
      $("#content, #left-navigation").css("margin-left", ($(this).width()+25)+"px");
      $("#p-logo a").css("width", ($(this).width())+"px");
      }
    }).css("border-right", "#d3d3d3 4px ridge");


  $("#siteTree").height($(window).height()-250);
  $("#p-navigation").remove();
});