Browse Source

Fix URL Bootstrap

tags/2.0.0-beta
MarsuBoss 11 years ago
parent
commit
a1e30e8462
  1. 2
      Button.php
  2. 4
      ButtonDropdown.php
  3. 4
      ButtonGroup.php
  4. 2
      Carousel.php
  5. 2
      Collapse.php
  6. 2
      Dropdown.php
  7. 6
      Modal.php
  8. 2
      Nav.php
  9. 4
      NavBar.php
  10. 2
      Tabs.php
  11. 4
      Widget.php

2
Button.php

@ -20,7 +20,7 @@ use yii\helpers\Html;
* 'options' => ['class' => 'btn-lg'],
* ]);
* ```
* @see http://twitter.github.io/bootstrap/javascript.html#buttons
* @see http://getbootstrap.com/javascript/#buttons
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

4
ButtonDropdown.php

@ -26,8 +26,8 @@ use yii\helpers\Html;
* ],
* ]);
* ```
* @see http://twitter.github.io/bootstrap/javascript.html#buttons
* @see http://twitter.github.io/bootstrap/components.html#buttonDropdowns
* @see http://getbootstrap.com/javascript/#buttons
* @see http://getbootstrap.com/components/#btn-dropdowns
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

4
ButtonGroup.php

@ -32,8 +32,8 @@ use yii\helpers\Html;
* ]
* ]);
* ```
* @see http://twitter.github.io/bootstrap/javascript.html#buttons
* @see http://twitter.github.io/bootstrap/components.html#buttonGroups
* @see http://getbootstrap.com/javascript/#buttons
* @see http://getbootstrap.com/components/#btn-groups
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

2
Carousel.php

@ -33,7 +33,7 @@ use yii\helpers\Html;
* ]);
* ```
*
* @see http://twitter.github.io/bootstrap/javascript.html#carousel
* @see http://getbootstrap.com/javascript/#carousel
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

2
Collapse.php

@ -35,7 +35,7 @@ use yii\helpers\Html;
* ]);
* ```
*
* @see http://twitter.github.io/bootstrap/javascript.html#collapse
* @see http://getbootstrap.com/javascript/#collapse
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

2
Dropdown.php

@ -14,7 +14,7 @@ use yii\helpers\Html;
/**
* Dropdown renders a Bootstrap dropdown menu component.
*
* @see http://twitter.github.io/bootstrap/javascript.html#dropdowns
* @see http://getbootstrap.com/javascript/#dropdowns
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

6
Modal.php

@ -28,7 +28,7 @@ use yii\helpers\Html;
* Modal::end();
* ~~~
*
* @see http://twitter.github.io/bootstrap/javascript.html#modals
* @see http://getbootstrap.com/javascript/#modals
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
@ -54,7 +54,7 @@ class Modal extends Widget
* - label: string, the label of the button. Defaults to '&times;'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Modal plugin help](http://twitter.github.com/bootstrap/javascript.html#modals)
* Please refer to the [Modal plugin help](http://getbootstrap.com/javascript/#modals)
* for the supported HTML attributes.
*/
public $closeButton = [];
@ -69,7 +69,7 @@ class Modal extends Widget
* - label: string, the label of the button. Defaults to 'Show'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Modal plugin help](http://twitter.github.com/bootstrap/javascript.html#modals)
* Please refer to the [Modal plugin help](http://getbootstrap.com/javascript/#modals)
* for the supported HTML attributes.
*/
public $toggleButton;

2
Nav.php

@ -40,7 +40,7 @@ use yii\helpers\Html;
*
* Note: Multilevel dropdowns beyond Level 1 are not supported in Bootstrap 3.
*
* @see http://getbootstrap.com/components.html#dropdowns
* @see http://getbootstrap.com/components/#dropdowns
* @see http://getbootstrap.com/components/#nav
*
* @author Antonio Ramirez <amigo.cobos@gmail.com>

4
NavBar.php

@ -30,7 +30,7 @@ use yii\helpers\Html;
* NavBar::end();
* ```
*
* @see http://twitter.github.io/bootstrap/components.html#navbar
* @see http://getbootstrap.com/components/#navbar
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/
@ -38,7 +38,7 @@ class NavBar extends Widget
{
/**
* @var string the text of the brand. Note that this is not HTML-encoded.
* @see http://twitter.github.io/bootstrap/components.html#navbar
* @see http://getbootstrap.com/components/#navbar
*/
public $brandLabel;
/**

2
Tabs.php

@ -47,7 +47,7 @@ use yii\helpers\Html;
* ]);
* ```
*
* @see http://twitter.github.io/bootstrap/javascript.html#tabs
* @see http://getbootstrap.com/javascript/#tabs
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/

4
Widget.php

@ -26,14 +26,14 @@ class Widget extends \yii\base\Widget
/**
* @var array the options for the underlying Bootstrap JS plugin.
* Please refer to the corresponding Bootstrap plugin Web page for possible options.
* For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows
* For example, [this page](http://getbootstrap.com/javascript/#modals) shows
* how to use the "Modal" plugin and the supported options (e.g. "remote").
*/
public $clientOptions = [];
/**
* @var array the event handlers for the underlying Bootstrap JS plugin.
* Please refer to the corresponding Bootstrap plugin Web page for possible events.
* For example, [this page](http://twitter.github.io/bootstrap/javascript.html#modals) shows
* For example, [this page](http://getbootstrap.com/javascript/#modals) shows
* how to use the "Modal" plugin and the supported events (e.g. "shown").
*/
public $clientEvents = [];

Loading…
Cancel
Save