IEAsset.php 550 字节
Newer Older
R
add  
root 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
/**
 * FecShop file.
 * @link http://www.fecshop.com/
 * @copyright Copyright (c) 2016 FecShop Software LLC
 * @license http://www.fecshop.com/license/
 */
namespace fecshop\app\appfront\theme\base\front\assets;
use yii\web\AssetBundle;
/**
 * Page services
 * @author Terry Zhao <2358269014@qq.com>
 * @since 1.0
 */
class IEAsset extends AssetBundle
{
    public $sourcePath = '@fecshop/app/appfront/theme/base/front/assets';
	public $cssOptions = ['condition' => 'if IE'];
	public $css = [
		'css/ie.css',
	];	
    
}