X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4b6fc6dc545a10955094bfaa9448ba070cfb33bf..1a0ae46452efb09971ed0a5ea35ddc8bda8adc7a:/wolnelektury/static/js/player.js

diff --git a/wolnelektury/static/js/player.js b/wolnelektury/static/js/player.js
index fea845029..69dceed55 100755
--- a/wolnelektury/static/js/player.js
+++ b/wolnelektury/static/js/player.js
@@ -1,11 +1,12 @@
 (function($) {
     $(function() {
 
-
-        $("#jplayer").jPlayer({
+      $("#jplayer").each(function() {
+      	var $self = $(this);
+        $self.jPlayer({
             swfPath: "/static/jplayer/",
             solution: "html,flash",
-            supplied: $(this).attr('data-supplied'),
+            supplied: $self.attr('data-supplied'),
     
             ready: function() {
                 var player = $(this);
@@ -27,7 +28,7 @@
                 });
             }
         });
-
+      });
 
     });
 })(jQuery)
\ No newline at end of file