Blame view

common/modules/comment/assets/CommentAsset.php 510 Bytes
a8370482   Alexander Karnovsky   init project
1
2
3
4
5
  <?php
      namespace common\modules\comment\assets;
  
      class CommentAsset extends \yii\web\AssetBundle
      {
377b29c7   Yarik   Yarik comment
6
  
a8370482   Alexander Karnovsky   init project
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
          public $sourcePath = '@common/modules/comment/resources';
  
          public $css = [
              'comment.css',
          ];
  
          public $js = [
              'comment.js',
          ];
  
          public $depends = [
              '\yii\web\YiiAsset',
              '\yii\web\JqueryAsset',
          ];
  
377b29c7   Yarik   Yarik comment
22
23
24
25
          public $jsOptions = [
              'position' => \yii\web\View::POS_READY,
          ];
  
a8370482   Alexander Karnovsky   init project
26
      }