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
b7c9a639
Commit
b7c9a639
authored
Sep 11, 2011
by
Mark Otto
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.3-wip' of github.com:twitter/bootstrap into 1.3-wip
parents
bd3448cf
e255b4f5
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
366 additions
and
207 deletions
+366
-207
docs/assets/js/application.js
docs/assets/js/application.js
+0
-6
docs/index.html
docs/index.html
+1
-1
docs/javascript.html
docs/javascript.html
+202
-91
js/bootstrap-dropdown.js
js/bootstrap-dropdown.js
+6
-5
js/bootstrap-modal.js
js/bootstrap-modal.js
+121
-89
js/bootstrap-scrollspy.js
js/bootstrap-scrollspy.js
+30
-13
js/bootstrap-tabs.js
js/bootstrap-tabs.js
+6
-2
No files found.
docs/assets/js/application.js
View file @
b7c9a639
$
(
document
).
ready
(
function
(){
// Dropdown example for topbar nav
// ===============================
$
(
'
body
'
).
dropdown
()
// catch any dropdowns on the page
// Scrollspy
// =========
...
...
docs/index.html
View file @
b7c9a639
...
...
@@ -1255,7 +1255,7 @@
</div>
<h2>
Fixed topbar
</h2>
<div
class=
"topbar-wrapper"
style=
"z-index: 5;"
>
<div
class=
"topbar"
>
<div
class=
"topbar"
data-dropdown
>
<div
class=
"topbar-inner"
>
<div
class=
"container"
>
<h3><a
href=
"#"
>
Project Name
</a></h3>
...
...
docs/javascript.html
View file @
b7c9a639
This diff is collapsed.
Click to expand it.
js/bootstrap-dropdown.js
View file @
b7c9a639
...
...
@@ -20,22 +20,23 @@
(
function
(
$
){
var
selector
=
'
a.menu, .dropdown-toggle
'
var
d
=
'
a.menu, .dropdown-toggle
'
function
clearMenus
()
{
$
(
selector
).
parent
(
'
li
'
).
removeClass
(
'
open
'
)
$
(
d
).
parent
(
'
li
'
).
removeClass
(
'
open
'
)
}
$
(
function
()
{
$
(
'
body
'
).
bind
(
"
click
"
,
clearMenus
)
$
(
'
html
'
).
bind
(
"
click
"
,
clearMenus
)
$
(
'
body
'
).
dropdown
(
'
[data-dropdown] a.menu, [data-dropdown] .dropdown-toggle
'
)
})
/* DROPDOWN PLUGIN DEFINITION
* ========================== */
$
.
fn
.
dropdown
=
function
(
options
)
{
$
.
fn
.
dropdown
=
function
(
selector
)
{
return
this
.
each
(
function
()
{
$
(
this
).
delegate
(
selector
,
'
click
'
,
function
(
e
)
{
$
(
this
).
delegate
(
selector
||
d
,
'
click
'
,
function
(
e
)
{
var
li
=
$
(
this
).
parent
(
'
li
'
)
,
isActive
=
li
.
hasClass
(
'
open
'
)
...
...
js/bootstrap-modal.js
View file @
b7c9a639
...
...
@@ -54,16 +54,16 @@
var
Modal
=
function
(
content
,
options
)
{
this
.
settings
=
$
.
extend
({},
$
.
fn
.
modal
.
defaults
)
this
.
$element
=
$
(
content
)
.
delegate
(
'
.close
'
,
'
click.modal
'
,
$
.
proxy
(
this
.
hide
,
this
))
if
(
options
)
{
$
.
extend
(
this
.
settings
,
options
)
}
this
.
$element
=
$
(
content
)
.
bind
(
'
modal:show
'
,
$
.
proxy
(
this
.
show
,
this
))
.
bind
(
'
modal:hide
'
,
$
.
proxy
(
this
.
hide
,
this
))
.
bind
(
'
modal:toggle
'
,
$
.
proxy
(
this
.
toggle
,
this
))
.
delegate
(
'
.close
'
,
'
click
'
,
$
.
proxy
(
this
.
hide
,
this
))
if
(
options
.
show
)
{
this
.
show
()
}
}
return
this
}
...
...
@@ -77,10 +77,10 @@
,
show
:
function
()
{
var
that
=
this
this
.
isShown
=
true
this
.
$element
.
trigger
(
'
show
'
)
_
.
escape
.
call
(
this
)
_
.
backdrop
.
call
(
this
,
function
()
{
escape
.
call
(
this
)
backdrop
.
call
(
this
,
function
()
{
that
.
$element
.
appendTo
(
document
.
body
)
.
show
()
...
...
@@ -88,7 +88,7 @@
setTimeout
(
function
()
{
that
.
$element
.
addClass
(
'
in
'
)
.
trigger
(
'
modal:
shown
'
)
.
trigger
(
'
shown
'
)
},
1
)
})
...
...
@@ -99,19 +99,20 @@
e
&&
e
.
preventDefault
()
var
that
=
this
this
.
isShown
=
false
_
.
escape
.
call
(
this
)
escape
.
call
(
this
)
this
.
$element
.
removeClass
(
'
in
'
)
this
.
$element
.
trigger
(
'
hide
'
)
.
removeClass
(
'
in
'
)
function
removeElement
()
{
that
.
$element
.
detach
()
.
trigger
(
'
modal:
hidden
'
)
.
hide
()
.
trigger
(
'
hidden
'
)
_
.
backdrop
.
call
(
that
)
backdrop
.
call
(
that
)
}
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
fade
'
)
?
...
...
@@ -127,9 +128,7 @@
/* MODAL PRIVATE METHODS
* ===================== */
var
_
=
{
backdrop
:
function
(
callback
)
{
function
backdrop
(
callback
)
{
var
that
=
this
,
animate
=
this
.
$element
.
hasClass
(
'
fade
'
)
?
'
fade
'
:
''
if
(
this
.
isShown
&&
this
.
settings
.
backdrop
)
{
...
...
@@ -154,24 +153,22 @@
$
.
support
.
transition
&&
this
.
$element
.
hasClass
(
'
fade
'
)?
this
.
$backdrop
.
one
(
transitionEnd
,
removeElement
)
:
removeElement
()
}
else
{
}
else
if
(
callback
)
{
callback
()
}
}
,
escape
:
function
()
{
function
escape
()
{
var
that
=
this
if
(
this
.
isShown
&&
this
.
settings
.
closeOnEscape
)
{
$
(
'
body
'
).
bind
(
'
keyup.modal.escape
'
,
function
(
e
)
{
if
(
this
.
isShown
&&
this
.
settings
.
keyboard
)
{
$
(
'
body
'
).
bind
(
'
keyup.modal
'
,
function
(
e
)
{
if
(
e
.
which
==
27
)
{
that
.
hide
()
}
})
}
else
if
(
!
this
.
isShown
)
{
$
(
'
body
'
).
unbind
(
'
keyup.modal.escape
'
)
}
$
(
'
body
'
).
unbind
(
'
keyup.modal
'
)
}
}
...
...
@@ -179,17 +176,52 @@
* ======================= */
$
.
fn
.
modal
=
function
(
options
)
{
options
=
options
||
{}
var
modal
=
this
.
data
(
'
modal
'
)
if
(
!
modal
)
{
if
(
typeof
options
==
'
string
'
)
{
options
=
{
show
:
/show|toggle/
.
test
(
options
)
}
}
return
this
.
each
(
function
()
{
return
new
Modal
(
this
,
options
)
$
(
this
).
data
(
'
modal
'
,
new
Modal
(
this
,
options
)
)
})
}
if
(
options
===
true
)
{
return
modal
}
if
(
typeof
options
==
'
string
'
)
{
modal
[
options
]()
}
else
if
(
modal
)
{
modal
.
toggle
()
}
return
this
}
$
.
fn
.
modal
.
Modal
=
Modal
$
.
fn
.
modal
.
defaults
=
{
backdrop
:
false
,
hideOnEscape
:
false
,
keyboard
:
false
,
show
:
true
}
/* MODAL DATA- IMPLEMENTATION
* ========================== */
$
(
function
()
{
$
(
'
body
'
).
delegate
(
'
[data-controls-modal]
'
,
'
click
'
,
function
(
e
)
{
e
.
preventDefault
()
var
$this
=
$
(
this
).
data
(
'
show
'
,
true
)
$
(
'
#
'
+
$this
.
attr
(
'
data-controls-modal
'
)).
modal
(
$this
.
data
()
)
})
})
})(
jQuery
||
ender
)
\ No newline at end of file
js/bootstrap-scrollspy.js
View file @
b7c9a639
...
...
@@ -22,21 +22,20 @@
var
$window
=
$
(
window
)
function
ScrollSpy
(
topbar
)
{
function
ScrollSpy
(
topbar
,
selector
)
{
var
processScroll
=
$
.
proxy
(
this
.
processScroll
,
this
)
this
.
$topbar
=
$
(
topbar
)
this
.
setup
()
this
.
$topbar
.
delegate
(
'
li > a
'
,
'
click
'
,
processScroll
)
.
bind
(
'
topbar:refresh
'
,
$
.
proxy
(
this
.
setup
,
this
))
this
.
selector
=
selector
||
'
li > a
'
this
.
refresh
()
this
.
$topbar
.
delegate
(
this
.
selector
,
'
click
'
,
processScroll
)
$window
.
scroll
(
processScroll
)
this
.
processScroll
()
}
ScrollSpy
.
prototype
=
{
setup
:
function
()
{
this
.
targets
=
this
.
$topbar
.
find
(
'
li > a
'
).
map
(
function
()
{
refresh
:
function
()
{
this
.
targets
=
this
.
$topbar
.
find
(
this
.
selector
).
map
(
function
()
{
var
href
=
$
(
this
).
attr
(
'
href
'
)
return
/^#
\w
/
.
test
(
href
)
&&
$
(
href
).
length
?
href
:
null
})
...
...
@@ -65,11 +64,11 @@
this
.
activeTarget
=
target
this
.
$topbar
.
find
(
'
.active
'
)
.
find
(
this
.
selector
).
parent
(
'
.active
'
)
.
removeClass
(
'
active
'
)
this
.
$topbar
.
find
(
'
a[href=
'
+
target
+
'
]
'
)
.
find
(
this
.
selector
+
'
[href="
'
+
target
+
'
"
]
'
)
.
parent
(
'
li
'
)
.
addClass
(
'
active
'
)
}
...
...
@@ -79,10 +78,28 @@
/* SCROLLSPY PLUGIN DEFINITION
* =========================== */
$
.
fn
.
scrollSpy
=
function
()
{
$
.
fn
.
scrollSpy
=
function
(
options
)
{
var
scrollspy
=
this
.
data
(
'
scrollspy
'
)
if
(
!
scrollspy
)
{
return
this
.
each
(
function
()
{
new
ScrollSpy
(
this
)
$
(
this
).
data
(
'
scrollspy
'
,
new
ScrollSpy
(
this
,
options
)
)
})
}
if
(
options
===
true
)
{
return
scrollspy
}
if
(
typeof
options
==
'
string
'
)
{
scrollspy
[
options
]()
}
return
this
}
$
(
function
()
{
$
(
'
body
'
).
scrollSpy
(
'
[data-scrollspy] li > a
'
)
})
}(
jQuery
||
ender
)
\ No newline at end of file
js/bootstrap-tabs.js
View file @
b7c9a639
...
...
@@ -49,10 +49,14 @@
/* TABS/PILLS PLUGIN DEFINITION
* ============================ */
$
.
fn
.
tabs
=
$
.
fn
.
pills
=
function
()
{
$
.
fn
.
tabs
=
$
.
fn
.
pills
=
function
(
selector
)
{
return
this
.
each
(
function
()
{
$
(
this
).
delegate
(
'
.tabs > li > a, .pills > li > a, .dropdown-menu
> li > a
'
,
'
click
'
,
tab
)
$
(
this
).
delegate
(
selector
||
'
.tabs li > a, .pills
> li > a
'
,
'
click
'
,
tab
)
})
}
$
(
function
()
{
$
(
'
body
'
).
tabs
(
'
ul[data-tabs] li > a, ul[data-pills] > li > a
'
)
})
})(
jQuery
||
ender
)
\ No newline at end of file
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