mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-26 23:54:23 +01:00
Merge branch 'master' of github.com:twbs/bootstrap
This commit is contained in:
commit
6fda30e1c4
12
bower.json
12
bower.json
@ -2,8 +2,8 @@
|
|||||||
"name": "bootstrap",
|
"name": "bootstrap",
|
||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"main": [
|
"main": [
|
||||||
"./dist/js/bootstrap.js",
|
|
||||||
"./dist/css/bootstrap.css",
|
"./dist/css/bootstrap.css",
|
||||||
|
"./dist/js/bootstrap.js",
|
||||||
"./dist/fonts/glyphicons-halflings-regular.eot",
|
"./dist/fonts/glyphicons-halflings-regular.eot",
|
||||||
"./dist/fonts/glyphicons-halflings-regular.svg",
|
"./dist/fonts/glyphicons-halflings-regular.svg",
|
||||||
"./dist/fonts/glyphicons-halflings-regular.ttf",
|
"./dist/fonts/glyphicons-halflings-regular.ttf",
|
||||||
@ -11,14 +11,14 @@
|
|||||||
],
|
],
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"**/.*",
|
"**/.*",
|
||||||
|
"*.html",
|
||||||
"_*",
|
"_*",
|
||||||
|
"CNAME",
|
||||||
|
"composer.json",
|
||||||
|
"CONTRIBUTING.md",
|
||||||
"docs-assets",
|
"docs-assets",
|
||||||
"examples",
|
"examples",
|
||||||
"js/tests",
|
"js/tests"
|
||||||
"CNAME",
|
|
||||||
"CONTRIBUTING.md",
|
|
||||||
"composer.json",
|
|
||||||
"*.html"
|
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery": ">= 1.9.0"
|
"jquery": ">= 1.9.0"
|
||||||
|
@ -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))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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)
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
{
|
{
|
||||||
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
|
"disallowKeywords": ["with"],
|
||||||
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
|
|
||||||
"requireLeftStickedOperators": [","],
|
"requireLeftStickedOperators": [","],
|
||||||
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
||||||
"requireRightStickedOperators": ["!"],
|
|
||||||
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
||||||
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
||||||
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
||||||
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
"requireLineFeedAtFileEnd": true,
|
||||||
|
"requireRightStickedOperators": ["!"],
|
||||||
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
||||||
"disallowKeywords": ["with"],
|
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
|
||||||
"validateLineBreaks": "LF",
|
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
||||||
"requireLineFeedAtFileEnd": true
|
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
|
||||||
|
"validateLineBreaks": "LF"
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
}
|
}
|
18
package.json
18
package.json
@ -2,10 +2,15 @@
|
|||||||
"name": "bootstrap",
|
"name": "bootstrap",
|
||||||
"description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.",
|
"description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.",
|
||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"keywords": ["bootstrap", "css"],
|
"keywords": [
|
||||||
|
"bootstrap",
|
||||||
|
"css"
|
||||||
|
],
|
||||||
"homepage": "http://getbootstrap.com",
|
"homepage": "http://getbootstrap.com",
|
||||||
"author": "Twitter, Inc.",
|
"author": "Twitter, Inc.",
|
||||||
"scripts": { "test": "grunt test" },
|
"scripts": {
|
||||||
|
"test": "grunt test"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/twbs/bootstrap.git"
|
"url": "https://github.com/twbs/bootstrap.git"
|
||||||
@ -43,13 +48,18 @@
|
|||||||
},
|
},
|
||||||
"jspm": {
|
"jspm": {
|
||||||
"main": "js/bootstrap",
|
"main": "js/bootstrap",
|
||||||
"directories": { "lib": "dist" },
|
"directories": {
|
||||||
|
"example": "examples",
|
||||||
|
"lib": "dist"
|
||||||
|
},
|
||||||
"shim": {
|
"shim": {
|
||||||
"js/bootstrap": {
|
"js/bootstrap": {
|
||||||
"imports": "jquery",
|
"imports": "jquery",
|
||||||
"exports": "$"
|
"exports": "$"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buildConfig": { "uglify": true }
|
"buildConfig": {
|
||||||
|
"uglify": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user