Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
46fe3838
Commit
46fe3838
authored
Nov 27, 2011
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename tabs to tab - clean up lots of api stuff make href acceptable target val
parent
3925ea99
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
161 additions
and
44 deletions
+161
-44
docs/javascript.html
docs/javascript.html
+51
-38
js/README.md
js/README.md
+2
-2
js/bootstrap-collapse.js
js/bootstrap-collapse.js
+2
-2
js/bootstrap-modal.js
js/bootstrap-modal.js
+1
-1
js/bootstrap-scrollspy.js
js/bootstrap-scrollspy.js
+3
-1
js/bootstrap-tab.js
js/bootstrap-tab.js
+102
-0
js/bootstrap-transition.js
js/bootstrap-transition.js
+0
-0
No files found.
docs/javascript.html
View file @
46fe3838
This diff is collapsed.
Click to expand it.
js/README.md
View file @
46fe3838
...
...
@@ -67,14 +67,14 @@ All events should have an infinitive and past participle form. The infinitive is
Data attributes should take the following form:
data-
*(verb)*
- defines main interaction
data-target - defined on controller element (if element interacts with an element other than self)
data-target
|| href^=#
- defined on controller element (if element interacts with an element other than self)
data-
*(noun)*
- defines options for element invocation
examples:
// control other targets
data-toggle="modal" data-target="#foo"
data-toggle="
view" data-targe
t="#foo"
data-toggle="
collapse" data-target="#foo" data-paren
t="#foo"
// defined on element they control
data-spy="scroll"
...
...
js/bootstrap-collapse.js
View file @
46fe3838
...
...
@@ -117,9 +117,9 @@
$
(
function
()
{
$
(
'
body
'
).
delegate
(
'
[data-toggle=collapse]
'
,
'
click.collapse.data-api
'
,
function
(
e
)
{
var
$this
=
$
(
this
)
,
target
=
$this
.
attr
(
'
data-target
'
)
,
target
=
$this
.
attr
(
'
data-target
'
)
||
$this
.
attr
(
'
href
'
)
,
option
=
$
(
target
).
data
(
'
collapse
'
)
?
'
toggle
'
:
$this
.
data
()
e
.
preventDefault
()
e
.
preventDefault
()
$
(
target
).
collapse
(
option
)
})
})
...
...
js/bootstrap-modal.js
View file @
46fe3838
...
...
@@ -192,7 +192,7 @@
$
(
document
).
ready
(
function
()
{
$
(
'
body
'
).
delegate
(
'
[data-toggle="modal"]
'
,
'
click.modal.data-api
'
,
function
(
e
)
{
var
$this
=
$
(
this
)
,
target
=
$this
.
attr
(
'
data-target
'
)
,
target
=
$this
.
attr
(
'
data-target
'
)
||
$this
.
attr
(
'
href
'
)
,
option
=
$
(
target
).
data
(
'
modal
'
)
?
'
toggle
'
:
$this
.
data
()
e
.
preventDefault
()
$
(
target
).
modal
(
option
)
...
...
js/bootstrap-scrollspy.js
View file @
46fe3838
...
...
@@ -28,7 +28,9 @@
var
process
=
$
.
proxy
(
this
.
process
,
this
)
this
.
$scrollElement
=
$
(
element
).
bind
(
'
scroll.scroll.data-api
'
,
process
)
this
.
selector
=
(
this
.
$scrollElement
.
attr
(
'
data-target
'
)
||
''
)
+
'
.nav li > a
'
this
.
selector
=
(
this
.
$scrollElement
.
attr
(
'
data-target
'
)
||
this
.
$scrollElement
.
attr
(
'
href
'
)
||
''
)
+
'
.nav li > a
'
this
.
$body
=
$
(
'
body
'
).
delegate
(
this
.
selector
,
'
click.scroll.data-api
'
,
process
)
this
.
refresh
()
...
...
js/bootstrap-tab
s
.js
→
js/bootstrap-tab.js
View file @
46fe3838
...
...
@@ -22,59 +22,81 @@
"
use strict
"
function
activate
(
element
,
container
)
{
container
.
find
(
'
> .active
'
)
.
removeClass
(
'
active
'
)
.
find
(
'
> .dropdown-menu > .active
'
)
.
removeClass
(
'
active
'
)
/* TAB CLASS DEFINITION
* ==================== */
element
.
addClass
(
'
active
'
)
if
(
element
.
parent
(
'
.dropdown-menu
'
)
)
{
element
.
closest
(
'
li.dropdown
'
).
addClass
(
'
active
'
)
}
var
Tab
=
function
(
element
)
{
this
.
element
=
$
(
element
)
}
function
tab
(
e
)
{
var
$this
=
$
(
this
)
,
$ul
=
$this
.
closest
(
'
ul:not(.dropdown-menu)
'
)
,
href
=
$this
.
attr
(
'
href
'
)
,
previous
,
$href
Tab
.
prototype
=
{
if
(
/^#
\w
+/
.
test
(
href
)
)
{
e
.
preventDefault
()
show
:
function
()
{
var
$this
=
this
.
element
,
$ul
=
$this
.
closest
(
'
ul:not(.dropdown-menu)
'
)
,
href
=
$this
.
attr
(
'
data-target
'
)
||
$this
.
attr
(
'
href
'
)
,
previous
,
$href
if
(
$this
.
parent
(
'
li
'
).
hasClass
(
'
active
'
)
)
{
return
}
if
(
$this
.
parent
(
'
li
'
).
hasClass
(
'
active
'
)
)
return
previous
=
$ul
.
find
(
'
.active a
'
).
last
()[
0
]
$this
.
trigger
({
type
:
'
show
'
,
relatedTarget
:
previous
})
$href
=
$
(
href
)
activate
(
$this
.
parent
(
'
li
'
),
$ul
)
activate
(
$href
,
$href
.
parent
())
this
.
activate
(
$this
.
parent
(
'
li
'
),
$ul
)
this
.
activate
(
$href
,
$href
.
parent
())
$this
.
trigger
({
type
:
'
change
'
type
:
'
shown
'
,
relatedTarget
:
previous
})
}
,
activate
:
function
(
element
,
container
)
{
container
.
find
(
'
> .active
'
)
.
removeClass
(
'
active
'
)
.
find
(
'
> .dropdown-menu > .active
'
)
.
removeClass
(
'
active
'
)
element
.
addClass
(
'
active
'
)
if
(
element
.
parent
(
'
.dropdown-menu
'
)
)
{
element
.
closest
(
'
li.dropdown
'
).
addClass
(
'
active
'
)
}
}
}
/* TAB
S/PILLS
PLUGIN DEFINITION
* =====================
=======
*/
/* TAB PLUGIN DEFINITION
* ===================== */
$
.
fn
.
tab
s
=
$
.
fn
.
pills
=
function
(
selector
)
{
$
.
fn
.
tab
=
function
(
option
)
{
return
this
.
each
(
function
()
{
$
(
this
).
delegate
(
selector
||
'
.tabs li > a, .pills > li > a
'
,
'
click
'
,
tab
)
var
$this
=
$
(
this
)
,
data
=
$this
.
data
(
'
tab
'
)
if
(
!
data
)
$this
.
data
(
'
tab
'
,
(
data
=
new
Tab
(
this
)))
if
(
typeof
option
==
'
string
'
)
data
[
option
]()
})
}
$
.
fn
.
tab
.
Tab
=
Tab
/* TAB DATA-API
* ============ */
$
(
document
).
ready
(
function
()
{
$
(
'
body
'
).
tabs
(
'
ul[data-tabs] li > a, ul[data-pills] > li > a
'
)
$
(
'
body
'
).
delegate
(
'
[data-toggle="tab"], [data-toggle="pill"]
'
,
'
click.tab.data-api
'
,
function
(
e
)
{
e
.
preventDefault
()
$
(
this
).
tab
(
'
show
'
)
})
})
}(
window
.
jQuery
||
window
.
ender
)
\ No newline at end of file
js/bootstrap-transition
s
.js
→
js/bootstrap-transition.js
View file @
46fe3838
File moved
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