Blame view

vendor/kartik-v/yii2-krajee-base/Html5InputAsset.php 526 Bytes
583ea05f   andryeyev   + widget-select2
1
2
3
4
5
  <?php
  
  /**
   * @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2015
   * @package yii2-krajee-base
280e92c2   Dmitryi   авторизация через...
6
   * @version 1.7.8
583ea05f   andryeyev   + widget-select2
7
8
9
10
11
12
13
14
15
16
   */
  
  namespace kartik\base;
  
  /**
   * Asset bundle for Html5Input Widget
   *
   * @author Kartik Visweswaran <kartikv2@gmail.com>
   * @since 1.0
   */
280e92c2   Dmitryi   авторизация через...
17
  class Html5InputAsset extends AssetBundle
583ea05f   andryeyev   + widget-select2
18
19
20
21
22
23
24
25
26
27
28
  {
      /**
       * @inheritdoc
       */
      public function init()
      {
          $this->setSourcePath(__DIR__ . '/assets');
          $this->setupAssets('css', ['css/html5input']);
          parent::init();
      }
  }