mirror of
https://github.com/openvk/openvk
synced 2024-12-31 21:00:06 +03:00
Videos: Remove unnecessary attribute in the video tag
This commit is contained in:
parent
8c1a680f84
commit
7962a4efd7
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{extends "../@layout.xml"}
|
{extends "../@layout.xml"}
|
||||||
|
|
||||||
{block title}Видеозапись{/block}
|
{block title}{_video}{/block}
|
||||||
|
|
||||||
{block header}
|
{block header}
|
||||||
<a href="{$user->getURL()}">{$user->getCanonicalName()}</a>
|
<a href="{$user->getURL()}">{$user->getCanonicalName()}</a>
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
<center style="margin-bottom: 8pt;">
|
<center style="margin-bottom: 8pt;">
|
||||||
{if $video->getType() === 0}
|
{if $video->getType() === 0}
|
||||||
<div class="bsdn" data-name="{$video->getName()}" data-author="{$user->getCanonicalName()}">
|
<div class="bsdn" data-name="{$video->getName()}" data-author="{$user->getCanonicalName()}">
|
||||||
<video width="610" src="{$video->getURL()}"></video>
|
<video src="{$video->getURL()}"></video>
|
||||||
</div>
|
</div>
|
||||||
{else}
|
{else}
|
||||||
{var $driver = $video->getVideoDriver()}
|
{var $driver = $video->getVideoDriver()}
|
||||||
|
|
Loading…
Reference in a new issue