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
9d027d2b
Commit
9d027d2b
authored
Mar 09, 2014
by
XhmikosR
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneeded quotes.
parent
5e6d16ef
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
20 deletions
+21
-20
Gruntfile.js
Gruntfile.js
+3
-3
dist/js/bootstrap.js
dist/js/bootstrap.js
+4
-4
docs/assets/js/src/customizer.js
docs/assets/js/src/customizer.js
+3
-3
js/.jscsrc
js/.jscsrc
+1
-0
js/tests/unit/tooltip.js
js/tests/unit/tooltip.js
+6
-6
js/transition.js
js/transition.js
+4
-4
No files found.
Gruntfile.js
View file @
9d027d2b
...
@@ -66,8 +66,8 @@ module.exports = function (grunt) {
...
@@ -66,8 +66,8 @@ module.exports = function (grunt) {
},
},
grunt
:
{
grunt
:
{
options
:
{
options
:
{
'
requireCamelCaseOrUpperCaseIdentifiers
'
:
null
,
requireCamelCaseOrUpperCaseIdentifiers
:
null
,
'
requireParenthesesAroundIIFE
'
:
true
requireParenthesesAroundIIFE
:
true
},
},
src
:
'
<%= jshint.grunt.src %>
'
src
:
'
<%= jshint.grunt.src %>
'
},
},
...
@@ -95,7 +95,7 @@ module.exports = function (grunt) {
...
@@ -95,7 +95,7 @@ module.exports = function (grunt) {
],
],
docs
:
{
docs
:
{
options
:
{
options
:
{
'
ids
'
:
false
,
ids
:
false
,
'
overqualified-elements
'
:
false
'
overqualified-elements
'
:
false
},
},
src
:
'
docs/assets/css/src/docs.css
'
src
:
'
docs/assets/css/src/docs.css
'
...
...
dist/js/bootstrap.js
View file @
9d027d2b
...
@@ -25,10 +25,10 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
...
@@ -25,10 +25,10 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
var
el
=
document
.
createElement
(
'
bootstrap
'
)
var
el
=
document
.
createElement
(
'
bootstrap
'
)
var
transEndEventNames
=
{
var
transEndEventNames
=
{
'
WebkitTransition
'
:
'
webkitTransitionEnd
'
,
WebkitTransition
:
'
webkitTransitionEnd
'
,
'
MozTransition
'
:
'
transitionend
'
,
MozTransition
:
'
transitionend
'
,
'
OTransition
'
:
'
oTransitionEnd otransitionend
'
,
OTransition
:
'
oTransitionEnd otransitionend
'
,
'
transition
'
:
'
transitionend
'
transition
:
'
transitionend
'
}
}
for
(
var
name
in
transEndEventNames
)
{
for
(
var
name
in
transEndEventNames
)
{
...
...
docs/assets/js/src/customizer.js
View file @
9d027d2b
...
@@ -45,11 +45,11 @@ window.onload = function () { // wait for load in a dumb way because B-0
...
@@ -45,11 +45,11 @@ window.onload = function () { // wait for load in a dumb way because B-0
function
createGist
(
configJson
)
{
function
createGist
(
configJson
)
{
var
data
=
{
var
data
=
{
'
description
'
:
'
Bootstrap Customizer Config
'
,
description
:
'
Bootstrap Customizer Config
'
,
'
public
'
:
true
,
'
public
'
:
true
,
'
files
'
:
{
files
:
{
'
config.json
'
:
{
'
config.json
'
:
{
'
content
'
:
configJson
content
:
configJson
}
}
}
}
}
}
...
...
js/.jscsrc
View file @
9d027d2b
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowMixedSpacesAndTabs": true,
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true,
"disallowMultipleLineStrings": true,
"disallowQuotedKeysInObjects": "allButReserved",
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
...
...
js/tests/unit/tooltip.js
View file @
9d027d2b
...
@@ -391,12 +391,12 @@ $(function () {
...
@@ -391,12 +391,12 @@ $(function () {
test
(
'
tooltips should be placed dynamically, with the dynamic placement option
'
,
function
()
{
test
(
'
tooltips should be placed dynamically, with the dynamic placement option
'
,
function
()
{
$
.
support
.
transition
=
false
$
.
support
.
transition
=
false
var
ttContainer
=
$
(
'
<div id="dynamic-tt-test"/>
'
).
css
({
var
ttContainer
=
$
(
'
<div id="dynamic-tt-test"/>
'
).
css
({
'
height
'
:
400
,
height
:
400
,
'
overflow
'
:
'
hidden
'
,
overflow
:
'
hidden
'
,
'
position
'
:
'
absolute
'
,
position
:
'
absolute
'
,
'
top
'
:
0
,
top
:
0
,
'
left
'
:
0
,
left
:
0
,
'
width
'
:
600
width
:
600
})
})
.
appendTo
(
'
body
'
)
.
appendTo
(
'
body
'
)
...
...
js/transition.js
View file @
9d027d2b
...
@@ -17,10 +17,10 @@
...
@@ -17,10 +17,10 @@
var
el
=
document
.
createElement
(
'
bootstrap
'
)
var
el
=
document
.
createElement
(
'
bootstrap
'
)
var
transEndEventNames
=
{
var
transEndEventNames
=
{
'
WebkitTransition
'
:
'
webkitTransitionEnd
'
,
WebkitTransition
:
'
webkitTransitionEnd
'
,
'
MozTransition
'
:
'
transitionend
'
,
MozTransition
:
'
transitionend
'
,
'
OTransition
'
:
'
oTransitionEnd otransitionend
'
,
OTransition
:
'
oTransitionEnd otransitionend
'
,
'
transition
'
:
'
transitionend
'
transition
:
'
transitionend
'
}
}
for
(
var
name
in
transEndEventNames
)
{
for
(
var
name
in
transEndEventNames
)
{
...
...
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