MediaWiki:Common.js: Różnice pomiędzy wersjami
Przejdź do nawigacji
Przejdź do wyszukiwania
Nie podano opisu zmian |
mNie podano opisu zmian |
||
(Nie pokazano 45 pośrednich wersji utworzonych przez tego samego użytkownika) | |||
Linia 4: | Linia 4: | ||
var content_width = $('#mw-content-text').width(); | var content_width = $('#mw-content-text').width(); | ||
if (reference_width > ) { | if (reference_width > 0) { | ||
$('.verse').css('width', content_width - reference_width - 15 + 'px'); | $('.verse').css('width', content_width - reference_width - 15 + 'px'); | ||
} | } | ||
Linia 14: | Linia 14: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$('.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(){ | |||
$(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(); | 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(); });