LtIE9Asset.php 831 字节
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 24 25 26 27 28 29 30 31 32 33 34 35 36 37
<?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 LtIE9Asset extends AssetBundle
{
    public $sourcePath = '@fecshop/app/appfront/theme/base/front/assets';
	public $cssOptions = ['condition' => 'lt IE 9'];
	public $css = [
		'css/ltie9.css',
	];
	/*
	public $jsOptions = [ 
		//'position' => \yii\web\View::POS_END ,
		'condition' => 'lt IE 9'
	];
	
    public $js = [
        //'dwz_jui-master/js/speedup.js',
		//'dwz_jui-master/jquery-1.11.3.min.js',
    ];
    public $depends = [
        
    ];	
	*/
    
}