* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015 * @version 1.7.7 */ namespace kartik\base; use Yii; /** * Common base widget asset bundle for all Krajee widgets * * @author Kartik Visweswaran * @since 1.0 */ class WidgetAsset extends AssetBundle { /** * @inheritdoc */ public function init() { $this->setSourcePath(__DIR__ . '/assets'); $this->setupAssets('css', ['css/kv-widgets']); parent::init(); } }