X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2335f0fb136da38009654cc798cb8582cdfada22..5b5ccdc9dc573482feaded2eaa8110bc65f27cb7:/wolnelektury/static/js/player.js?ds=sidebyside 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