TooltipAsset.php 466 Bytes
Newer Older
1 2 3 4 5 6 7 8
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\jui;
AlexGx committed
9

10 11 12 13 14 15
use yii\web\AssetBundle;

/**
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
Qiang Xue committed
16
class TooltipAsset extends AssetBundle
17 18
{
	public $sourcePath = '@yii/jui/assets';
Alexander Makarov committed
19
	public $js = [
Qiang Xue committed
20
		'jquery.ui.tooltip.js',
Alexander Makarov committed
21 22
	];
	public $depends = [
Qiang Xue committed
23 24
		'yii\jui\CoreAsset',
		'yii\jui\EffectAsset',
Alexander Makarov committed
25
	];
26
}