Your IP : 216.73.216.79


Current Path : /var/www/html/quest5/common/widgets/flash/
Upload File :
Current File : /var/www/html/quest5/common/widgets/flash/flashAsset.php

<?php
namespace common\widgets\flash;

use yii\web\AssetBundle;

class flashAsset extends AssetBundle
{
    public $js = [
        // 'http://code.jquery.com/jquery-1.9.1.min.js',
        'https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/js/toastr.js'
    ];

    public $css = [
         // CDN lib
        'https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/css/toastr.css',
    ];

    public $depends = [
        'yii\web\JqueryAsset'
    ];

    public function init()
    {
        // Tell AssetBundle where the assets files are
        // $this->sourcePath = __DIR__ . "/assets";
        parent::init();
    }
}