Blame view

frontend/assets/FancyboxAsset.php 870 Bytes
3d0e6093   Administrator   15.02.16
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
27
28
29
30
31
32
33
34
35
36
37
38
39
  <?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;
  
  /**
   * Asset bundle for the Twitter bootstrap javascript files.
   *
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @since 2.0
   */
  class FancyboxAsset extends AssetBundle
  {
      public $sourcePath = '@bower/fancybox/';
  
      public $css = [
          'source/jquery.fancybox.css',
          'source/helpers/jquery.fancybox-buttons.css',
          'source/helpers/jquery.fancybox-thumbs.css'
  
      ];
  
      public $js = [
          'lib/jquery.mousewheel-3.0.6.pack.js',
          'source/jquery.fancybox.pack.js',
          'source/helpers/jquery.fancybox-buttons.js',
          'source/helpers/jquery.fancybox-media.js',
          'source/helpers/jquery.fancybox-thumbs.js'
  
  
      ];
  }