Commit 478da530 by Carsten Brandt

reverted #5189 and made markdown more clear

parent 6b353bb5
...@@ -240,15 +240,13 @@ be the corresponding [configuration arrays](concept-configurations.md). ...@@ -240,15 +240,13 @@ be the corresponding [configuration arrays](concept-configurations.md).
> Tip: You can conditionally choose which assets to use in an asset bundle. The following example shows how > Tip: You can conditionally choose which assets to use in an asset bundle. The following example shows how
> to use `jquery.js` in the development environment and `jquery.min.js` otherwise: > to use `jquery.js` in the development environment and `jquery.min.js` otherwise:
> >
> ```php
```php > 'yii\web\JqueryAsset' => [
'yii\web\JqueryAsset' => [ > 'js' => [
'js' => [ > YII_ENV_DEV ? 'jquery.js' : 'jquery.min.js'
YII_ENV_DEV ? 'jquery.js' : 'jquery.min.js' > ]
] > ],
], > ```
```
You can disable one or multiple asset bundles by associating `false` with the names of the asset bundles You can disable one or multiple asset bundles by associating `false` with the names of the asset bundles
that you want to disable. When you register a disabled asset bundle with a view, none of its dependent bundles that you want to disable. When you register a disabled asset bundle with a view, none of its dependent bundles
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment