MediaWiki:Common.js: Różnice pomiędzy wersjami

Z Notatki Biblijne
Przejdź do nawigacji Przejdź do wyszukiwania
Nie podano opisu zmian
mNie podano opisu zmian
 
(Nie pokazano 37 pośrednich wersji utworzonych przez tego samego użytkownika)
Linia 14: Linia 14:


$(document).ready(function() {
$(document).ready(function() {
  mw.loader.load('http://notatkibiblijne.pl/js/shortcut.js');
 
   $('.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("'''", "'''");
  });


   shortcut.add("Ctrl+B", function() {
   $('textarea').bind('keydown', 'meta+b', function(){
       alert("The bookmarks of your browser will show up after this alert…");
       $(this).surroundSelectedText("'''", "'''");
   }, {  
   });
       'type':'keydown',
 
       'propagate':true,  
  $('textarea').bind('keydown', 'ctrl+i', function(){
       'target':document
       $(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>");
   });


});
});




$j(window).resize(function() {
$(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();
	
});