X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/362ea2e7f8ac4254398791139cc060090199f400..1a8b33e26200ad64a574c77d7b88ece2d65f8a98:/wolnelektury/static/js/jquery.eventdelegation.js

diff --git a/wolnelektury/static/js/jquery.eventdelegation.js b/wolnelektury/static/js/jquery.eventdelegation.js
index 5ecba6e3b..52fce074a 100644
--- a/wolnelektury/static/js/jquery.eventdelegation.js
+++ b/wolnelektury/static/js/jquery.eventdelegation.js
@@ -1,4 +1,4 @@
-/* 
+/*
  * jQuery Event Delegation Plugin - jquery.eventdelegation.js
  * Fast flexible event handling
  *
@@ -21,10 +21,10 @@
 		'keydown',
 		'keypress',
 		'keyup'
-		], function(i, eventName) {	
+		], function(i, eventName) {
 			allowed[eventName] = true;
 	});
-	
+
 	$.fn.extend({
 		delegate: function (event, selector, f) {
 			return $(this).each(function () {
@@ -32,7 +32,7 @@
 					$(this).bind(event, function (e) {
 						var el = $(e.target),
 							result = false;
-						
+
 						while (!$(el).is('body')) {
 							if ($(el).is(selector)) {
 								result = f.apply($(el)[0], [e]);
@@ -40,7 +40,7 @@
 									e.preventDefault();
 								return;
 							}
-							
+
 							el = $(el).parent();
 						}
 					});