מדיה ויקי:Common.js: הבדלים בין גרסאות בדף

מתוך ויקיפועל
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
תגית: שחזור ידני
(החלפת הדף בתוכן "@media screen and (max-width: 800px) { div.memorybox { width:100%; float:left; } }")
תגית: החלפה
 
שורה 1: שורה 1:
if (mwCustomEditButtons) {
@media screen and (max-width: 800px) {
     div.memorybox  {
  mwCustomEditButtons[mwCustomEditButtons.length] = {
         width:100%;
    "imageFile": "http://images.wikia.com/central/images/7/74/Button_comment.png",
        float:left;
    "speedTip": "Comment visible only for editors",
    }
    "tagOpen": "<!-- ",
    "tagClose": " -->",
    "sampleText": "Insert comment here"}
  }
 
$(document).ready( function() {
     $('#tree').bind('fancytreeinit', function(event, data) {
         data.tree.makeTitleVisible();
    });
});
 
function ModifySidebar( action, section, name, link ) {
try {
switch ( section ) {
case 'languages':
var target = 'p-lang';
break;
case 'toolbox':
var target = 'p-tb';
break;
case 'navigation':
var target = 'p-navigation';
break;
default:
var target = 'p-' + section;
break;
}
 
if ( action == 'add' ) {
var node = document.getElementById( target )
  .getElementsByTagName( 'div' )[0]
  .getElementsByTagName( 'ul' )[0];
 
var aNode = document.createElement( 'a' );
var liNode = document.createElement( 'li' );
 
aNode.appendChild( document.createTextNode( name ) );
aNode.setAttribute( 'href', link );
liNode.appendChild( aNode );
liNode.className = 'plainlinks';
node.appendChild( liNode );
}
 
if ( action == 'remove' ) {
var list = document.getElementById( target )
  .getElementsByTagName( 'div' )[0]
  .getElementsByTagName( 'ul' )[0];
 
var listelements = list.getElementsByTagName( 'li' );
 
for ( var i = 0; i < listelements.length; i++ ) {
if (
listelements[i].getElementsByTagName( 'a' )[0].innerHTML == name ||
listelements[i].getElementsByTagName( 'a' )[0].href == link
)
{
list.removeChild( listelements[i] );
}
}
}
 
 
} catch( e ) {
// let's just ignore what's happened
return;
}
}
}
function CustomizeModificationsOfSidebar() {
// adds [[Special:CategoryTree|Special:CategoryTree]] to toolbox
ModifySidebar( 'add', 'toolbox', 'CategoryTree', 'https://en.wikipedia.org/wiki/Special:CategoryTree' );
// removes [[Special:Upload|Special:Upload]] from toolbox
ModifySidebar( 'remove', 'toolbox', 'Upload file', 'https://en.wikipedia.org/wiki/Special:Upload' );
}
jQuery( CustomizeModificationsOfSidebar );

גרסה אחרונה מ־07:23, 25 בנובמבר 2023

@media screen and (max-width: 800px) {
    div.memorybox  {
        width:100%;
        float:left;
    }
}