Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
6f49e466
Commit
6f49e466
authored
Mar 06, 2014
by
Christophe BOULAIN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CS fix
parent
0ab7f1e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
CHANGELOG.md
extensions/bootstrap/CHANGELOG.md
+2
-1
Modal.php
extensions/bootstrap/Modal.php
+4
-4
No files found.
extensions/bootstrap/CHANGELOG.md
View file @
6f49e466
...
...
@@ -12,9 +12,10 @@ Yii Framework 2 bootstrap extension Change Log
-
Enh #1601: Added support for tagName and encodeLabel parameters in ButtonDropdown (omnilight)
-
Enh #1881: Improved
`yii\bootstrap\NavBar`
with
`containerOptions`
,
`innerContainerOptions`
and
`renderInnerContainer`
(creocoder)
-
Enh #2425: Tabs widget now selects first tab if no active tab is specified (samdark)
-
Enh #2643: Add size attribute to Modal (tof06)
-
Chg #1459: Update Collapse to use bootstrap 3 classes (tonydspaniard)
-
Chg #1820: Update Progress to use bootstrap 3 markup (samdark)
-
Enh #2643: Add size attribute to Modal (tof06)
2.0.0 alpha, December 1, 2013
-----------------------------
...
...
extensions/bootstrap/Modal.php
View file @
6f49e466
...
...
@@ -35,9 +35,9 @@ use yii\helpers\Html;
*/
class
Modal
extends
Widget
{
const
SIZE_LARGE
=
"modal-lg"
;
const
SIZE_SMALL
=
"modal-sm"
;
const
SIZE_DEFAULT
=
""
;
const
SIZE_LARGE
=
"modal-lg"
;
const
SIZE_SMALL
=
"modal-sm"
;
const
SIZE_DEFAULT
=
""
;
/**
* @var string the header content in the modal window.
...
...
@@ -94,7 +94,7 @@ class Modal extends Widget
echo
$this
->
renderToggleButton
()
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
$this
->
options
)
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
[
'class'
=>
'modal-dialog '
.
$this
->
size
])
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
[
'class'
=>
'modal-dialog '
.
$this
->
size
])
.
"
\n
"
;
echo
Html
::
beginTag
(
'div'
,
[
'class'
=>
'modal-content'
])
.
"
\n
"
;
echo
$this
->
renderHeader
()
.
"
\n
"
;
echo
$this
->
renderBodyBegin
()
.
"
\n
"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment