summaryrefslogtreecommitdiff
path: root/modules/gallery/views/movieplayer.html.php
diff options
context:
space:
mode:
authorChad Kieffer <ckieffer@gmail.com>2009-07-21 00:06:11 -0600
committerChad Kieffer <ckieffer@gmail.com>2009-07-21 00:06:11 -0600
commit7f9e71d8cdcf99267adc2b4a6332e379a0fca0fc (patch)
tree1ee75c57e9caf682799b9fc7e19f009d27c15f08 /modules/gallery/views/movieplayer.html.php
parent329b6ce28ce0424303fece0fa0f542a0f1cb39ae (diff)
parentd7814f37cb2194098bd8aa3887bd830033200e8b (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/views/movieplayer.html.php')
-rw-r--r--modules/gallery/views/movieplayer.html.php25
1 files changed, 16 insertions, 9 deletions
diff --git a/modules/gallery/views/movieplayer.html.php b/modules/gallery/views/movieplayer.html.php
index e8cabd31..e9783eb8 100644
--- a/modules/gallery/views/movieplayer.html.php
+++ b/modules/gallery/views/movieplayer.html.php
@@ -1,15 +1,22 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= html::anchor($item->file_url(true), "", $attrs) ?>
<script>
- flowplayer("<?= $attrs["id"] ?>", "<?= url::abs_file("lib/flowplayer.swf") ?>", {
- plugins: {
- h264streaming: {
- url: "<?= url::abs_file("lib/flowplayer.h264streaming.swf") ?>"
- },
- controls: {
- autoHide: 'always',
- hideDelay: 2000
+ flowplayer(
+ "<?= $attrs["id"] ?>",
+ {
+ src: "<?= url::abs_file("lib/flowplayer.swf") ?>",
+ wmode: "transparent"
+ },
+ {
+ plugins: {
+ h264streaming: {
+ url: "<?= url::abs_file("lib/flowplayer.h264streaming.swf") ?>"
+ },
+ controls: {
+ autoHide: 'always',
+ hideDelay: 2000
+ }
}
}
- })
+ )
</script>