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

ניסוי
מ 9 גרסאות של הדף wikipedia:he:מדיה_ויקי:Gadget-moveVectorMenuToTabs.js יובאו
 
(גרסת ביניים אחת של משתמש אחר אחד אינה מוצגת)
שורה 1: שורה 1:
// for vector skin: replace the links in the dropdown menu with regular tabs and hide the menu
// for vector skin: replace the links in the dropdown menu with regular tabs and hide the menu
// written by [[user:Mikimik]]
// written by [[user:Mikimik]]
$(function() {setTimeout(function() {
$(function() {
$('#p-cactions li a').wrap('<span>');
function doit() {
$('#p-cactions li').insertAfter($('#ca-js-delete, #ca-js-block, #ca-watch, #ca-unwatch').eq(0));
$( '#p-cactions li a' ).wrap( '<span>' );
}, 777);
$( '#p-cactions li' ).insertAfter( $( '#ca-js-delete, #ca-js-block, #ca-watch, #ca-unwatch' ).eq( 0 ) );
$('#p-cactions').toggle( false );
}
doit();
$( document ).on( 'new-portlet-link', doit );
});
});