1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php namespace frontend\assets; use yii\web\AssetBundle; /** * Notify asset bundle. */ class NotifyAsset extends AssetBundle { public $sourcePath = '@bower/remarkable-bootstrap-notify/dist'; public $js = [ 'bootstrap-notify.js', ]; public $depends = [ 'yii\web\JqueryAsset', 'yii\bootstrap\BootstrapAsset', ]; }