for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/2amigos/yii2-type-ahead-widget
* @copyright Copyright (c) 2013-2015 2amigOS! Consulting Group LLC
* @license http://opensource.org/licenses/BSD-3-Clause
*/
namespace dosamigos\typeahead;
use yii\web\AssetBundle;
* TypeAheadAsset
*
* @author Alexander Kochetov <[email protected]>
class TypeAheadAsset extends AssetBundle
{
public $css = [
'css/bootstrap-typeahead.css',
];
public function init()
$this->sourcePath = __DIR__ . '/assets';
parent::init();
}