MediaWiki:Common.js: Różnice pomiędzy wersjami
Przejdź do nawigacji
Przejdź do wyszukiwania
mNie podano opisu zmian |
mNie podano opisu zmian |
||
(Nie pokazano 12 pośrednich wersji utworzonych przez tego samego użytkownika) | |||
Linia 1: | Linia 1: | ||
/* Szerokość wersetów */ | |||
function set_verse_width() { | function set_verse_width() { | ||
var reference_width = $('.reference').outerWidth(); | var reference_width = $('.reference').outerWidth(); | ||
Linia 16: | Linia 16: | ||
$('.selflink').parent('span.reference').css('display', 'none').css('width', '0'); | $('.selflink').parent('span.reference').css('display', 'none').css('width', '0'); | ||
set_verse_width(); | set_verse_width(); | ||
$('textarea').bind('keydown', 'ctrl+b', function(){ | $('textarea').bind('keydown', 'ctrl+b', function(){ | ||
$(this). surroundSelectedText("'''", "'''"); | $(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>"); | |||
}); | |||
}); | }); |
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(); });