diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-12 00:13:28 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-12 00:13:28 -0400 |
commit | e185c0395a6cd250ccd7c8e385c54830be73f937 (patch) | |
tree | 5e6807b33f8d622c67d4178652b7ca6819d4a84c /js/video.js | |
parent | 93030ae7b65f9a6b508dac0365dbcff302b65b90 (diff) |
Revert "trac #201 Add flowplayer to enable multimedia playback capability."
This reverts commit 9c9b6790ce78296c0b182f03b5f6f2c035e43a7c.
This code wasn't ready for release, so I've reverted it for now.
Conflicts:
lib/action.php
lib/util.php
Diffstat (limited to 'js/video.js')
-rw-r--r-- | js/video.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/js/video.js b/js/video.js deleted file mode 100644 index 936a6312e..000000000 --- a/js/video.js +++ /dev/null @@ -1,9 +0,0 @@ -$('document').ready(function() { - $('a.media, a.mediamp3').append(' <sup>[PLAY]</sup>'); - $('a.mediamp3').html('').css('display', 'block').css('width', '224px').css('height','24px').flowplayer('../bin/flowplayer-3.0.5.swf'); - $('a.media').click(function() { - $('<a id="p1i"></a>').attr('href', $(this).attr('href')).flowplayer('../bin/flowplayer-3.0.5.swf').modal({'closeHTML':'<a class="modalCloseImg" title="Close"><img src="x.png" /></a>'}); - return false; - }); -}); - |