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 30 pośrednich wersji utworzonych przez tego samego użytkownika)
Linia 9: Linia 9:
}
}


function shortcut() {
  console.log('test');
}




Linia 17: Linia 14:


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


   $(document).bind('keydown', 'ctrl_b', shortcut);
   $('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>");
  });


});
});




$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();
	
});