You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
380 B
22 lines
380 B
<?php |
|
/** |
|
* Created by Error202 |
|
* Date: 21.06.2018 |
|
*/ |
|
|
|
namespace frontend\web\themes\start\layouts\code\assets; |
|
|
|
|
|
use yii\web\AssetBundle; |
|
|
|
class JQueryAsset extends AssetBundle |
|
{ |
|
public $basePath = '@webroot/themes/start/vendor/jquery'; |
|
public $baseUrl = '@web/themes/start/vendor/jquery'; |
|
public $css = []; |
|
public $js = [ |
|
'jquery.min.js', |
|
]; |
|
public $depends = [ |
|
]; |
|
} |