Merge branch 'master' of https://github.com/fnp/wolnelektury
[wolnelektury.git] / apps / catalogue / static / player / openplayer.js
1 (function($) {
2     $(function() {
3
4
5
6 $('.open-player').click(function(event) {
7     event.preventDefault();
8     window.open($(this).attr('href'),
9         'player',
10         'width=422, height=500'
11         );
12 });
13
14
15
16     });
17 })(jQuery);
18