eliminato preload

This commit is contained in:
Lorenzo Giacomelli
2017-03-23 17:22:17 +01:00
parent c1c42146a4
commit 9b9675304c
@@ -13,7 +13,7 @@ class MediaLocalVideo extends MediaRenderer{
$size = self::$SIZES[$opt["size"]];
}
return '<video width="'.$size["width"].'" height="'.$size["height"].'" preload="metadata" controls >'.
return '<video width="'.$size["width"].'" height="'.$size["height"].'" controls >'.
'<source src="'.$this->getVideoLink($size).'" type="video/'.$this->getExtension().'" >'.
'</video>';
}