Blame view

frontend/assets/AppAsset.php 905 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?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;
  use yii\web\View;
  /**
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @since 2.0
   */
  class AppAsset extends AssetBundle
  {
      public $basePath = '@webroot';
      public $baseUrl = '@web';
      public $css = [
e337d04a   Administrator   liniya first commit
21
          'css/css_header.css',
51ed8cc5   Timur Kastemirov   increase speed fo...
22
23
  //        'css/comments.css',
  //        'http://fonts.googleapis.com/css?family=Roboto:400,300,700&subset=latin,cyrillic-ext',
4253cbec   root   first commit
24
25
      ];
      public $js = [
6c66c02e   Administrator   big commti
26
  
fe7b6960   Yarik   Basket
27
          '/js/artbox_basket.js',
bff65579   Виталий   test commit
28
          'js/script.js',
2cbb3bdc   Виталий   test commit
29
          'js/new_script.js',
4253cbec   root   first commit
30
31
32
      ];
      public $depends = [
          'yii\web\JqueryAsset',
c93ce871   Administrator   big commti
33
          'sersid\owlcarousel\Asset',
353c0f81   Administrator   big commti
34
35
          'yii\bootstrap\BootstrapPluginAsset',
  
4253cbec   root   first commit
36
      ];
93c2e365   Administrator   big commti
37
38
39
40
41
42
  
      public $jsOptions = [
          'position' =>  View::POS_END
      ];
  
  
4253cbec   root   first commit
43
  }