|
- <?php
- /**
- * @link http://www.yiiframework.com/
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
-
- namespace backend\assets;
-
- use yii\web\AssetBundle;
-
- /**
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @since 2.0
- */
- class AppAsset extends AssetBundle
- {
- public $basePath = '@webroot';
- public $baseUrl = '@web';
- public $css = [
- 'css/site.css',
- '../../frontend/web/js/jquery-ui-1.11.4.custom/jquery-ui.min.css',
- '../../frontend/web/js/jquery-ui-1.11.4.custom/jquery-ui.theme.css',
- 'css/screen.css?v=2',
- ];
- public $js = [
- '../../frontend/web/js/jquery-ui-1.11.4.custom/jquery-ui.min.js',
- 'js/lechatdesnoisettes.js?v=2',
-
- ];
- public $depends = [
- 'yii\bootstrap\BootstrapAsset',
- 'yii\web\YiiAsset',
- ];
- }
|