| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2016-08-12 15:25
- */
- namespace frontend\assets;
- class ViewAsset extends \yii\web\AssetBundle
- {
- public $css = [
- 'static/syntaxhighlighter/styles/shCoreDefault.css'
- ];
- public $js = [
- 'static/syntaxhighlighter/scripts/shCore.js',
- 'static/syntaxhighlighter/scripts/shBrushJScript.js',
- 'static/syntaxhighlighter/scripts/shBrushPython.js',
- 'static/syntaxhighlighter/scripts/shBrushPhp.js',
- 'static/syntaxhighlighter/scripts/shBrushJava.js',
- 'static/syntaxhighlighter/scripts/shBrushCss.js',
- ];
- public $depends = [
- 'frontend\assets\AppAsset'
- ];
- }
|