init
This commit is contained in:
28
vendor/yiisoft/yii2-jui/JuiAsset.php
vendored
Normal file
28
vendor/yiisoft/yii2-jui/JuiAsset.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\jui;
|
||||
|
||||
use yii\web\AssetBundle;
|
||||
|
||||
/**
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
class JuiAsset extends AssetBundle
|
||||
{
|
||||
public $sourcePath = '@bower/jquery-ui';
|
||||
public $js = [
|
||||
'jquery-ui.js',
|
||||
];
|
||||
public $css = [
|
||||
'themes/smoothness/jquery-ui.css',
|
||||
];
|
||||
public $depends = [
|
||||
'yii\web\JqueryAsset',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user