Logo white

Yarik / ecreators

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ecreators
  • frontend
  • assets
  • NotifyAsset.php
  • first commit on new server
    62e4514d
    Administrator authored
    2016-12-27 19:31:44 +0200  
    Browse Code ยป
NotifyAsset.php 362 Bytes
Edit Raw Blame History
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',
    ];
}