Blame view

common/modules/comment/assets/CommentAsset.php 823 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
  <?php
5c2eb7c8   Yarik   Big commit almost...
2
3
4
5
6
      
      namespace common\modules\comment\assets;
      
      use yii\web\AssetBundle;
      
d8c1a2e0   Yarik   Big commit artbox
7
      /**
5c2eb7c8   Yarik   Big commit almost...
8
9
       * Class CommentAsset
       * @package common\modules\comment\assets
d8c1a2e0   Yarik   Big commit artbox
10
       */
5c2eb7c8   Yarik   Big commit almost...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
      class CommentAsset extends AssetBundle
      {
          
          /**
           * @inheritdoc
           */
          public $sourcePath = '@artbox-comment/resources';
          
          /**
           * @inheritdoc
           */
          public $js = [
              'artbox_comment.js',
              'jquery.rateit.min.js',
          ];
          
          /**
           * @inheritdoc
           */
          public $css = [
              'artbox_comment.css',
              'rateit.css',
          ];
          
          /**
           * @inheritdoc
           */
          public $depends = [
              'yii\web\JqueryAsset',
              'yii\web\YiiAsset',
          ];
      }