Blame view

frontend/assets/FotoramaAsset.php 635 Bytes
d09f430f   Administrator   big commti
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
  /**
   * @link http://www.yiiframework.com/
   * @copyright Copyright (c) 2008 Yii Software LLC
   * @license http://www.yiiframework.com/license/
   */
  
  namespace frontend\assets;
  
  use yii\web\AssetBundle;
  
  /**
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @since 2.0
   */
  class FotoramaAsset extends AssetBundle
  {
      public $sourcePath = '@bower';
      public $css = [
9114c0a4   Administrator   big commti
20
          'lightbox2/dist/css/lightbox.min.css'
d09f430f   Administrator   big commti
21
22
      ];
      public $js = [
9114c0a4   Administrator   big commti
23
          'lightbox2/dist/js/lightbox.min.js'
d09f430f   Administrator   big commti
24
25
26
27
      ];
      public $jsOptions = array(
          'position' => \yii\web\View::POS_END
      );
353c0f81   Administrator   big commti
28
29
30
      public $depends = [
          'yii\web\YiiAsset',
      ];
d09f430f   Administrator   big commti
31
  }