diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-07-20 22:12:39 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-07-20 22:12:39 -0700 |
commit | 67e83e66c6c302d3bf2d0a6aa52d1f7d2ed991e5 (patch) | |
tree | 3d5534fb520437d46aee0f26bb8b2b48d1d2999c | |
parent | 653badc2e1b9753f29bbb1d9fec8098716a4a2f4 (diff) |
Fix indentation
-rw-r--r-- | modules/gallery/views/movieplayer.html.php | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/modules/gallery/views/movieplayer.html.php b/modules/gallery/views/movieplayer.html.php index 28324a54..e9783eb8 100644 --- a/modules/gallery/views/movieplayer.html.php +++ b/modules/gallery/views/movieplayer.html.php @@ -1,16 +1,22 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <?= html::anchor($item->file_url(true), "", $attrs) ?> <script> - 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 + 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> |