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
c7dc4cc5
Commit
c7dc4cc5
authored
Apr 14, 2012
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change position of var in dropdown + cleanup makefile vars
parent
ce944421
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
Makefile
Makefile
+0
-2
docs/assets/bootstrap.zip
docs/assets/bootstrap.zip
+0
-0
docs/assets/js/bootstrap-dropdown.js
docs/assets/js/bootstrap-dropdown.js
+5
-1
js/bootstrap-dropdown.js
js/bootstrap-dropdown.js
+1
-1
No files found.
Makefile
View file @
c7dc4cc5
...
@@ -2,8 +2,6 @@ BOOTSTRAP = ./docs/assets/css/bootstrap.css
...
@@ -2,8 +2,6 @@ BOOTSTRAP = ./docs/assets/css/bootstrap.css
BOOTSTRAP_LESS
=
./less/bootstrap.less
BOOTSTRAP_LESS
=
./less/bootstrap.less
BOOTSTRAP_RESPONSIVE
=
./docs/assets/css/bootstrap-responsive.css
BOOTSTRAP_RESPONSIVE
=
./docs/assets/css/bootstrap-responsive.css
BOOTSTRAP_RESPONSIVE_LESS
=
./less/responsive.less
BOOTSTRAP_RESPONSIVE_LESS
=
./less/responsive.less
LESS_COMPRESSOR
?=
`
which lessc
`
WATCHR
?=
`
which watchr
`
#
#
# BUILD DOCS
# BUILD DOCS
...
...
docs/assets/bootstrap.zip
View file @
c7dc4cc5
No preview for this file type
docs/assets/js/bootstrap-dropdown.js
View file @
c7dc4cc5
...
@@ -40,10 +40,14 @@
...
@@ -40,10 +40,14 @@
,
toggle
:
function
(
e
)
{
,
toggle
:
function
(
e
)
{
var
$this
=
$
(
this
)
var
$this
=
$
(
this
)
,
selector
=
$this
.
attr
(
'
data-target
'
)
,
$parent
,
$parent
,
selector
,
isActive
,
isActive
if
(
$this
.
is
(
'
.disabled, :disabled
'
))
return
selector
=
$this
.
attr
(
'
data-target
'
)
if
(
!
selector
)
{
if
(
!
selector
)
{
selector
=
$this
.
attr
(
'
href
'
)
selector
=
$this
.
attr
(
'
href
'
)
selector
=
selector
&&
selector
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
''
)
//strip for ie7
selector
=
selector
&&
selector
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
''
)
//strip for ie7
...
...
js/bootstrap-dropdown.js
View file @
c7dc4cc5
...
@@ -40,8 +40,8 @@
...
@@ -40,8 +40,8 @@
,
toggle
:
function
(
e
)
{
,
toggle
:
function
(
e
)
{
var
$this
=
$
(
this
)
var
$this
=
$
(
this
)
,
selector
,
$parent
,
$parent
,
selector
,
isActive
,
isActive
if
(
$this
.
is
(
'
.disabled, :disabled
'
))
return
if
(
$this
.
is
(
'
.disabled, :disabled
'
))
return
...
...
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