27 lines
376 B
PHP
Executable File
27 lines
376 B
PHP
Executable File
<?php
|
|
|
|
namespace mdm\admin;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
/**
|
|
* Description of AnimateAsset
|
|
*
|
|
* @author Misbahul D Munir <misbahuldmunir@gmail.com>
|
|
* @since 2.5
|
|
*/
|
|
class AnimateAsset extends AssetBundle
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public $sourcePath = '@mdm/admin/assets';
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public $css = [
|
|
'animate.css',
|
|
];
|
|
|
|
}
|