Blame view

frontend/assets/AppAsset.php 1004 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',
aefe93aa   Administrator   big commti
22
          'css/comments.css',
e337d04a   Administrator   liniya first commit
23
          'http://fonts.googleapis.com/css?family=Roboto:400,300,700&subset=latin,cyrillic-ext',
4253cbec   root   first commit
24
25
      ];
      public $js = [
0094ae47   Yarik   JS fixes.
26
          //'js/js_head.js',
fe7b6960   Yarik   Basket
27
28
          //'js/js_footer.js',
          '/js/artbox_basket.js',
bff65579   Виталий   test commit
29
          'js/script.js',
2cbb3bdc   Виталий   test commit
30
          'js/new_script.js',
4253cbec   root   first commit
31
32
33
      ];
      public $depends = [
          'yii\web\JqueryAsset',
c93ce871   Administrator   big commti
34
          'sersid\owlcarousel\Asset',
0094ae47   Yarik   JS fixes.
35
          'yii\bootstrap\BootstrapPluginAsset',
4253cbec   root   first commit
36
37
38
39
40
41
42
      ];
      
      public function init() {
          $this->jsOptions['position'] = View::POS_END;
          parent::init();
      }    
  }