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
433 B
22 lines
433 B
<?php
|
|
|
|
namespace backend\modules\goods\web;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
/**
|
|
* Main backend application asset bundle.
|
|
*/
|
|
class GoodsAttributeAsset extends AssetBundle
|
|
{
|
|
public $sourcePath = "@backend/modules/goods/assets";
|
|
public $css = [
|
|
];
|
|
public $js = [
|
|
// 'custom/sku.49a56a9198d9c3ec233c.js'
|
|
'custom/sku.52802ed907a316501cd7.js'
|
|
];
|
|
public $depends = [
|
|
'yii\web\YiiAsset',
|
|
];
|
|
}
|