Logo white

Administrator / test_3

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_3
  • common
  • modules
  • comment
  • assets
  • CommentAsset.php
  • test
    fdc1c9de
    Yarik authored
    2016-04-07 16:04:13 +0300  
    Browse Code ยป
CommentAsset.php 510 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 21 22 23 24 25 26
<?php
    namespace common\modules\comment\assets;

    class CommentAsset extends \yii\web\AssetBundle
    {

        public $sourcePath = '@common/modules/comment/resources';

        public $css = [
            'comment.css',
        ];

        public $js = [
            'comment.js',
        ];

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

        public $jsOptions = [
            'position' => \yii\web\View::POS_READY,
        ];

    }