Blame view

frontend/assets/StatementAsset.php 469 Bytes
b41d5459   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
  
  namespace frontend\assets;
  
  use yii\web\AssetBundle;
  
  /**
   * Main frontend application asset bundle.
   */
  class StatementAsset extends AssetBundle
  {
      public $basePath = '@webroot';
      public $baseUrl = '@web';
      public $css = [
      ];
      public $js = [
          '/js/map.js',
          '/js/statement.js',
          'https://maps.googleapis.com/maps/api/js?signed_in=true&callback=initMap',
      ];
      public $depends = [
          'yii\web\JqueryAsset'
      ];
  }