Commit 34d50074 by Alexander Makarov

Merge pull request #2219 from marsuboss/fix-url-bootstrap

Fix URL Bootstrap
parents f16dff0f 1d04eb78
......@@ -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
*/
......
......@@ -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
*/
......
......@@ -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
*/
......
......@@ -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
*/
......
......@@ -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
*/
......
......@@ -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
*/
......
......@@ -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;
......
......@@ -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>
......
......@@ -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;
/**
......
......@@ -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
*/
......
......@@ -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 = [];
......
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