From a1e30e84620c52363286bfb59d32d70f1b60cd55 Mon Sep 17 00:00:00 2001 From: MarsuBoss Date: Thu, 30 Jan 2014 11:07:42 +0100 Subject: [PATCH] Fix URL Bootstrap --- Button.php | 2 +- ButtonDropdown.php | 4 ++-- ButtonGroup.php | 4 ++-- Carousel.php | 2 +- Collapse.php | 2 +- Dropdown.php | 2 +- Modal.php | 6 +++--- Nav.php | 2 +- NavBar.php | 4 ++-- Tabs.php | 2 +- Widget.php | 4 ++-- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Button.php b/Button.php index 88acab7..e1af489 100644 --- a/Button.php +++ b/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 * @since 2.0 */ diff --git a/ButtonDropdown.php b/ButtonDropdown.php index 51b2ddd..911cb0f 100644 --- a/ButtonDropdown.php +++ b/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 * @since 2.0 */ diff --git a/ButtonGroup.php b/ButtonGroup.php index e305f8b..66d2cc0 100644 --- a/ButtonGroup.php +++ b/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 * @since 2.0 */ diff --git a/Carousel.php b/Carousel.php index 8344929..eaeb6a5 100644 --- a/Carousel.php +++ b/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 * @since 2.0 */ diff --git a/Collapse.php b/Collapse.php index 794c5e8..2de06d9 100644 --- a/Collapse.php +++ b/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 * @since 2.0 */ diff --git a/Dropdown.php b/Dropdown.php index fecfb0b..15eab94 100644 --- a/Dropdown.php +++ b/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 * @since 2.0 */ diff --git a/Modal.php b/Modal.php index 94a3997..276b57c 100644 --- a/Modal.php +++ b/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 * @author Qiang Xue * @since 2.0 @@ -54,7 +54,7 @@ class Modal extends Widget * - label: string, the label of the button. Defaults to '×'. * * 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; diff --git a/Nav.php b/Nav.php index c6fe8f6..5ccca05 100644 --- a/Nav.php +++ b/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 diff --git a/NavBar.php b/NavBar.php index 4a15481..56616ea 100644 --- a/NavBar.php +++ b/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 * @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; /** diff --git a/Tabs.php b/Tabs.php index 2623a4c..4f8f7ad 100644 --- a/Tabs.php +++ b/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 * @since 2.0 */ diff --git a/Widget.php b/Widget.php index ff4084d..9dcae02 100644 --- a/Widget.php +++ b/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 = [];