Yii 2 mediaElement.js Asset Bundle
This extension provides an assets bundle with mediaelement.js and css for Yii framework 2.0 applications.
For license information check the LICENSE-file.
The preferred way to install this extension is through composer.
Either run
composer require "dhiraj/yii2-mediaelementasset:~1.0"
or add
"dhiraj/yii2-mediaelementasset": "~1.0",
to the require
section of your composer.json
file.
In view
traversient\yii\pagepiling\AssetBundle::register($this);
or as dependency in your main application asset bundle
class AppAsset extends AssetBundle
{
// ...
public $depends = [
// ...
'\traversient\yii\pagepiling\AssetBundle'
];
}
and both the jquery.pipelining.js and css will be added to your page load.