Html5InputAsset.php
539 Bytes
<?php
/**
 * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
 * @package yii2-krajee-base
 * @version 1.7.7
 */
namespace kartik\base;
/**
 * Asset bundle for Html5Input Widget
 *
 * @author Kartik Visweswaran <kartikv2@gmail.com>
 * @since 1.0
 */
class Html5InputAsset extends \kartik\base\AssetBundle
{
    /**
     * @inheritdoc
     */
    public function init()
    {
        $this->setSourcePath(__DIR__ . '/assets');
        $this->setupAssets('css', ['css/html5input']);
        parent::init();
    }
}