Commit 22439d33 by Alexander Makarov

Merge pull request #1291 from kartik-v/patch-3

Correct Nav.php comments/PHP doc to reflect BS3 dropdown support.
parents 257c4fcb 998d0f71
...@@ -14,7 +14,7 @@ use yii\helpers\Html; ...@@ -14,7 +14,7 @@ use yii\helpers\Html;
/** /**
* Nav renders a nav HTML component. * Nav renders a nav HTML component.
* *
* For example: * For example:
* *
* ```php * ```php
...@@ -28,23 +28,21 @@ use yii\helpers\Html; ...@@ -28,23 +28,21 @@ use yii\helpers\Html;
* [ * [
* 'label' => 'Dropdown', * 'label' => 'Dropdown',
* 'items' => [ * 'items' => [
* [ * ['label' => 'Level 1 - Dropdown A', 'url' => '#'],
* 'label' => 'Level 1 -DropdownA',
* 'url' => '#',
* 'items' => [
* ['label' => 'Level 2 -DropdownA', 'url' => '#'],
* ],
* ],
* '<li class="divider"></li>', * '<li class="divider"></li>',
* '<li class="dropdown-header">Dropdown Header</li>', * '<li class="dropdown-header">Dropdown Header</li>',
* ['label' => 'Level 1 -DropdownB', 'url' => '#'], * ['label' => 'Level 1 - Dropdown B', 'url' => '#'],
* ], * ],
* ], * ],
* ], * ],
* ]); * ]);
* ``` * ```
* *
* @see http://twitter.github.io/bootstrap/components.html#nav * Note: Multilevel dropdowns beyond Level 1 are not supported in Bootstrap 3.
*
* @see http://getbootstrap.com/components.html#dropdowns
* @see http://getbootstrap.com/components/#nav
*
* @author Antonio Ramirez <amigo.cobos@gmail.com> * @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
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