Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
9d027d2b
Commit
9d027d2b
authored
11 years ago
by
XhmikosR
Browse files
Options
Download
Email Patches
Plain Diff
Remove unneeded quotes.
parent
5e6d16ef
4 merge requests
!28721
Hot test
,
!22103
test
,
!25326
Adjust examples
,
!12986
Remove unneeded quotes.
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
Gruntfile.js
+3
-3
Gruntfile.js
dist/js/bootstrap.js
+4
-4
dist/js/bootstrap.js
docs/assets/js/src/customizer.js
+3
-3
docs/assets/js/src/customizer.js
js/.jscsrc
+1
-0
js/.jscsrc
js/tests/unit/tooltip.js
+6
-6
js/tests/unit/tooltip.js
js/transition.js
+4
-4
js/transition.js
with
21 additions
and
20 deletions
+21
-20
Gruntfile.js
+
3
-
3
View file @
9d027d2b
...
...
@@ -66,8 +66,8 @@ module.exports = function (grunt) {
},
grunt
:
{
options
:
{
'
requireCamelCaseOrUpperCaseIdentifiers
'
:
null
,
'
requireParenthesesAroundIIFE
'
:
true
requireCamelCaseOrUpperCaseIdentifiers
:
null
,
requireParenthesesAroundIIFE
:
true
},
src
:
'
<%= jshint.grunt.src %>
'
},
...
...
@@ -95,7 +95,7 @@ module.exports = function (grunt) {
],
docs
:
{
options
:
{
'
ids
'
:
false
,
ids
:
false
,
'
overqualified-elements
'
:
false
},
src
:
'
docs/assets/css/src/docs.css
'
...
...
This diff is collapsed.
Click to expand it.
dist/js/bootstrap.js
+
4
-
4
View file @
9d027d2b
...
...
@@ -25,10 +25,10 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
var
el
=
document
.
createElement
(
'
bootstrap
'
)
var
transEndEventNames
=
{
'
WebkitTransition
'
:
'
webkitTransitionEnd
'
,
'
MozTransition
'
:
'
transitionend
'
,
'
OTransition
'
:
'
oTransitionEnd otransitionend
'
,
'
transition
'
:
'
transitionend
'
WebkitTransition
:
'
webkitTransitionEnd
'
,
MozTransition
:
'
transitionend
'
,
OTransition
:
'
oTransitionEnd otransitionend
'
,
transition
:
'
transitionend
'
}
for
(
var
name
in
transEndEventNames
)
{
...
...
This diff is collapsed.
Click to expand it.
docs/assets/js/src/customizer.js
+
3
-
3
View file @
9d027d2b
...
...
@@ -45,11 +45,11 @@ window.onload = function () { // wait for load in a dumb way because B-0
function
createGist
(
configJson
)
{
var
data
=
{
'
description
'
:
'
Bootstrap Customizer Config
'
,
description
:
'
Bootstrap Customizer Config
'
,
'
public
'
:
true
,
'
files
'
:
{
files
:
{
'
config.json
'
:
{
'
content
'
:
configJson
content
:
configJson
}
}
}
...
...
This diff is collapsed.
Click to expand it.
js/.jscsrc
+
1
-
0
View file @
9d027d2b
...
...
@@ -4,6 +4,7 @@
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true,
"disallowQuotedKeysInObjects": "allButReserved",
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
...
...
This diff is collapsed.
Click to expand it.
js/tests/unit/tooltip.js
+
6
-
6
View file @
9d027d2b
...
...
@@ -391,12 +391,12 @@ $(function () {
test
(
'
tooltips should be placed dynamically, with the dynamic placement option
'
,
function
()
{
$
.
support
.
transition
=
false
var
ttContainer
=
$
(
'
<div id="dynamic-tt-test"/>
'
).
css
({
'
height
'
:
400
,
'
overflow
'
:
'
hidden
'
,
'
position
'
:
'
absolute
'
,
'
top
'
:
0
,
'
left
'
:
0
,
'
width
'
:
600
height
:
400
,
overflow
:
'
hidden
'
,
position
:
'
absolute
'
,
top
:
0
,
left
:
0
,
width
:
600
})
.
appendTo
(
'
body
'
)
...
...
This diff is collapsed.
Click to expand it.
js/transition.js
+
4
-
4
View file @
9d027d2b
...
...
@@ -17,10 +17,10 @@
var
el
=
document
.
createElement
(
'
bootstrap
'
)
var
transEndEventNames
=
{
'
WebkitTransition
'
:
'
webkitTransitionEnd
'
,
'
MozTransition
'
:
'
transitionend
'
,
'
OTransition
'
:
'
oTransitionEnd otransitionend
'
,
'
transition
'
:
'
transitionend
'
WebkitTransition
:
'
webkitTransitionEnd
'
,
MozTransition
:
'
transitionend
'
,
OTransition
:
'
oTransitionEnd otransitionend
'
,
transition
:
'
transitionend
'
}
for
(
var
name
in
transEndEventNames
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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
Menu
Explore
Projects
Groups
Snippets