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
a05a11e5
Commit
a05a11e5
authored
Dec 21, 2013
by
XhmikosR
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of JSHint's `laxcomma` option now that the comma is used on the right side.
parent
5f9695ae
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
docs-assets/js/application.js
docs-assets/js/application.js
+2
-2
docs-assets/js/customizer.js
docs-assets/js/customizer.js
+3
-3
js/.jshintrc
js/.jshintrc
+0
-1
No files found.
docs-assets/js/application.js
View file @
a05a11e5
...
@@ -59,8 +59,8 @@
...
@@ -59,8 +59,8 @@
var
navOuterHeight
=
$
(
'
.bs-docs-nav
'
).
height
()
var
navOuterHeight
=
$
(
'
.bs-docs-nav
'
).
height
()
return
(
this
.
top
=
offsetTop
-
navOuterHeight
-
sideBarMargin
)
return
(
this
.
top
=
offsetTop
-
navOuterHeight
-
sideBarMargin
)
}
}
,
,
bottom
:
function
()
{
bottom
:
function
()
{
return
(
this
.
bottom
=
$
(
'
.bs-footer
'
).
outerHeight
(
true
))
return
(
this
.
bottom
=
$
(
'
.bs-footer
'
).
outerHeight
(
true
))
}
}
}
}
...
...
docs-assets/js/customizer.js
View file @
a05a11e5
...
@@ -227,9 +227,9 @@ window.onload = function () { // wait for load in a dumb way because B-0
...
@@ -227,9 +227,9 @@ window.onload = function () { // wait for load in a dumb way because B-0
try
{
try
{
var
parser
=
new
less
.
Parser
({
var
parser
=
new
less
.
Parser
({
paths
:
[
'
variables.less
'
,
'
mixins.less
'
]
paths
:
[
'
variables.less
'
,
'
mixins.less
'
]
,
,
optimization
:
0
optimization
:
0
,
,
filename
:
'
bootstrap.css
'
filename
:
'
bootstrap.css
'
}).
parse
(
css
,
function
(
err
,
tree
)
{
}).
parse
(
css
,
function
(
err
,
tree
)
{
if
(
err
)
{
if
(
err
)
{
return
showError
(
'
<strong>Ruh roh!</strong> Could not parse less files.
'
,
err
)
return
showError
(
'
<strong>Ruh roh!</strong> Could not parse less files.
'
,
err
)
...
...
js/.jshintrc
View file @
a05a11e5
...
@@ -9,7 +9,6 @@
...
@@ -9,7 +9,6 @@
"eqnull" : true,
"eqnull" : true,
"expr" : true,
"expr" : true,
"laxbreak" : true,
"laxbreak" : true,
"laxcomma" : true,
"quotmark" : "single",
"quotmark" : "single",
"validthis": true
"validthis": true
}
}
\ 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