efureev/yii2-tagsinput

View on GitHub
src/TypeaheadAsset.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace efureev\tagsinput;

/**
 * Class TypeaheadAsset
 *
 * @package efureev\tagsinput
 */
class TypeaheadAsset extends \yii\web\AssetBundle
{

    public $sourcePath = '@bower/typeahead.js';

    public $js = [
        'dist/typeahead.bundle.min.js'
    ];

    public $depends = [
        'yii\web\JqueryAsset'
    ];

}