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
db706a25
Commit
db706a25
authored
Aug 27, 2011
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
white space junk
parent
52c62407
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
examples/assets/js/bootstrap-modals.js
examples/assets/js/bootstrap-modals.js
+13
-13
No files found.
examples/assets/js/bootstrap-modals.js
View file @
db706a25
...
...
@@ -3,7 +3,7 @@
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
* ======================================================= */
$
.
support
.
transition
=
(
function
()
{
$
.
support
.
transition
=
(
function
()
{
var
thisBody
=
document
.
body
||
document
.
documentElement
,
thisStyle
=
thisBody
.
style
,
support
=
thisStyle
.
transition
!==
undefined
||
thisStyle
.
WebkitTransition
!==
undefined
||
thisStyle
.
MozTransition
!==
undefined
||
thisStyle
.
MsTransition
!==
undefined
||
thisStyle
.
OTransition
!==
undefined
...
...
@@ -18,13 +18,13 @@
,
transitionEnd
// set CSS transition event type
if
(
$
.
support
.
transition
)
{
if
(
$
.
support
.
transition
)
{
transitionEnd
=
"
TransitionEnd
"
if
(
$
.
browser
.
webkit
)
{
if
(
$
.
browser
.
webkit
)
{
transitionEnd
=
"
webkitTransitionEnd
"
}
else
if
(
$
.
browser
.
mozilla
)
{
}
else
if
(
$
.
browser
.
mozilla
)
{
transitionEnd
=
"
transitionend
"
}
else
if
(
$
.
browser
.
opera
)
{
}
else
if
(
$
.
browser
.
opera
)
{
transitionEnd
=
"
oTransitionEnd
"
}
}
...
...
@@ -33,7 +33,7 @@
/* MODAL PUBLIC CLASS DEFINITION
* ============================= */
var
Modal
=
function
(
options
)
{
var
Modal
=
function
(
options
)
{
this
.
settings
=
{
backdrop
:
false
,
closeOnEscape
:
false
...
...
@@ -106,11 +106,11 @@
backdrop
:
function
()
{
var
that
=
this
if
(
this
.
isOpen
&&
this
.
settings
.
backdrop
)
{
if
(
this
.
isOpen
&&
this
.
settings
.
backdrop
)
{
this
.
$backdrop
=
$
(
'
<div class="modal-backdrop" />
'
)
.
click
(
function
()
{
that
.
close
()
})
.
appendTo
(
document
.
body
)
}
else
if
(
!
this
.
isOpen
&&
this
.
$backdrop
)
{
}
else
if
(
!
this
.
isOpen
&&
this
.
$backdrop
)
{
this
.
$backdrop
.
removeClass
(
'
open
'
)
function
removeElement
()
{
...
...
@@ -126,13 +126,13 @@
,
onEscape
:
function
()
{
var
that
=
this
if
(
this
.
isOpen
&&
this
.
settings
.
closeOnEscape
)
{
$window
.
bind
(
'
keyup.modal.escape
'
,
function
(
e
)
{
if
(
this
.
isOpen
&&
this
.
settings
.
closeOnEscape
)
{
$window
.
bind
(
'
keyup.modal.escape
'
,
function
(
e
)
{
if
(
e
.
which
==
27
)
{
that
.
close
()
}
})
}
else
if
(
!
this
.
isOpen
)
{
}
else
if
(
!
this
.
isOpen
)
{
$window
.
unbind
(
'
keyup.modal.escape
'
)
}
}
...
...
@@ -143,11 +143,11 @@
/* MODAL PLUGIN DEFINITION
* ======================= */
$
.
modal
=
function
(
options
)
{
$
.
modal
=
function
(
options
)
{
return
new
Modal
(
options
)
}
$
.
fn
.
modal
=
function
(
options
)
{
$
.
fn
.
modal
=
function
(
options
)
{
options
=
options
||
{}
options
.
content
=
this
return
new
Modal
(
options
)
...
...
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