MediaWiki:Common.js: Różnice pomiędzy wersjami
Przejdź do nawigacji
Przejdź do wyszukiwania
(Utworzono nową stronę "→Umieszczony tutaj kod JavaScript zostanie załadowany przez każdego użytkownika, podczas każdego ładowania strony.: var reference_width = $('.reference').width...") |
mNie podano opisu zmian |
||
(Nie pokazano 52 pośrednich wersji utworzonych przez tego samego użytkownika) | |||
Linia 1: | Linia 1: | ||
/* | /* Szerokość wersetów */ | ||
function set_verse_width() { | |||
var reference_width = $('.reference').outerWidth(); | |||
var content_width = $('#mw-content-text').width(); | |||
if (reference_width > 0) { | |||
$('.verse').css('width', content_width - reference_width - 15 + 'px'); | |||
} | |||
} | |||
$(document).ready(function() { | |||
$('.selflink').parent('span.reference').css('display', 'none').css('width', '0'); | |||
set_verse_width(); | |||
$('textarea').bind('keydown', 'ctrl+b', function(){ | |||
$(this).surroundSelectedText("'''", "'''"); | |||
}); | |||
$('textarea').bind('keydown', 'meta+b', function(){ | |||
$(this).surroundSelectedText("'''", "'''"); | |||
}); | |||
$('textarea').bind('keydown', 'ctrl+i', function(){ | |||
$(this).surroundSelectedText("''", "''"); | |||
}); | |||
$('textarea').bind('keydown', 'meta+i', function(){ | |||
$(this).surroundSelectedText("''", "''"); | |||
}); | |||
$('textarea').bind('keydown', 'alt+meta+x', function(){ | |||
$(this).surroundSelectedText("<ref>", "</ref>"); | |||
}); | |||
$('textarea').bind('keydown', 'alt+ctrl+x', function(){ | |||
$(this).surroundSelectedText("<ref>", "</ref>"); | |||
}); | |||
}); | |||
$(window).resize(function() { | |||
set_verse_width(); | |||
}); |
Aktualna wersja na dzień 19:33, 24 sie 2015
/* Szerokość wersetów */ function set_verse_width() { var reference_width = $('.reference').outerWidth(); var content_width = $('#mw-content-text').width(); if (reference_width > 0) { $('.verse').css('width', content_width - reference_width - 15 + 'px'); } } $(document).ready(function() { $('.selflink').parent('span.reference').css('display', 'none').css('width', '0'); set_verse_width(); $('textarea').bind('keydown', 'ctrl+b', function(){ $(this).surroundSelectedText("'''", "'''"); }); $('textarea').bind('keydown', 'meta+b', function(){ $(this).surroundSelectedText("'''", "'''"); }); $('textarea').bind('keydown', 'ctrl+i', function(){ $(this).surroundSelectedText("''", "''"); }); $('textarea').bind('keydown', 'meta+i', function(){ $(this).surroundSelectedText("''", "''"); }); $('textarea').bind('keydown', 'alt+meta+x', function(){ $(this).surroundSelectedText("<ref>", "</ref>"); }); $('textarea').bind('keydown', 'alt+ctrl+x', function(){ $(this).surroundSelectedText("<ref>", "</ref>"); }); }); $(window).resize(function() { set_verse_width(); });