1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-25 20:32:51 +01:00

Merge pull request #12986 from twbs/unneeded-quotes

Remove unneeded quotes.
This commit is contained in:
XhmikosR 2014-03-10 01:07:14 +02:00
commit 68b3e3f3be
6 changed files with 21 additions and 20 deletions

View File

@ -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) {
], ],
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'

View File

@ -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) {

View File

@ -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
} }
} }
} }

View File

@ -4,6 +4,7 @@
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], "disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowMixedSpacesAndTabs": true, "disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true, "disallowMultipleLineStrings": true,
"disallowQuotedKeysInObjects": "allButReserved",
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], "disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"], "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],

View File

@ -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')

View File

@ -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) {