-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
Multiple input group addon #18498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple input group addon #18498
Changes from all commits
5387ed6
95013f7
2e59d17
a1eafb1
4f09bbc
c591227
2c4e2fd
767cbef
697593b
1081733
8699751
4753bfb
9d2bb0f
aba3e40
3293350
a035ae2
911312d
7f45ac2
99d243a
a52c680
e38f066
85bc033
e12547d
79cdd66
05b1c62
7009662
8f627f6
ac9fa84
a482ddb
d53525c
1d39f93
f504300
c697e17
799ccf3
388b336
07c8e38
d97bf25
bb55426
167c6fa
a0b8cb7
03dbebb
5b46f3d
15eeb87
14c04c8
1db87ef
7552295
18ad53f
9aeec56
0e3948f
0d2cc3e
3d127c0
2261427
2cccdc8
5c8f7a0
50bea46
f5bb168
6e1e77b
ea7c23b
04d1b1f
a367408
80cd128
857d9d6
ef8bc28
b2a4cf0
fc87d82
c04aa41
47283e7
18ddb76
332ed55
1565c11
f14ee8f
3331565
8248b9e
14d73b9
087d16d
c0f6e1c
0820da3
03885dc
bed3872
ce58026
94b4076
3001831
c13de0e
910400e
8712118
81df608
c567895
f636ff1
c57a9b7
eb8940b
0506044
2fb3daa
fcf8e52
de0b881
75ef0dd
e4730c9
0ea8572
3786a71
14b6a21
2535f18
0f67b5e
46a294f
78ea825
25e8e4f
45b318b
e056a66
181f76f
05ab352
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
javascript: | ||
config_file: js/.jshintrc | ||
enabled: true | ||
scss: | ||
enabled: false |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -244,6 +244,7 @@ module.exports = function (grunt) { | |
}, | ||
docs: { | ||
src: [ | ||
'docs/assets/css/ie10-viewport-bug-workaround.css', | ||
'docs/assets/css/src/pygments-manni.css', | ||
'docs/assets/css/src/docs.css' | ||
], | ||
|
@@ -349,7 +350,7 @@ module.exports = function (grunt) { | |
options: { | ||
ignore: [ | ||
'Attribute "autocomplete" not allowed on element "button" at this point.', | ||
'Attribute "autocomplete" not allowed on element "input" at this point.', | ||
'Attribute "autocomplete" is only allowed when the input type is "color", "date", "datetime", "datetime-local", "email", "month", "number", "password", "range", "search", "tel", "text", "time", "url", or "week".', | ||
'Element "img" is missing required attribute "src".' | ||
] | ||
}, | ||
|
@@ -511,8 +512,9 @@ module.exports = function (grunt) { | |
grunt.registerTask('docs-js', ['uglify:docsJs', 'uglify:customize']); | ||
grunt.registerTask('lint-docs-js', ['jshint:assets', 'jscs:assets']); | ||
grunt.registerTask('docs', ['docs-css', 'lint-docs-css', 'docs-js', 'lint-docs-js', 'clean:docs', 'copy:docs', 'build-glyphicons-data', 'build-customizer']); | ||
grunt.registerTask('docs-github', ['jekyll:github', 'htmlmin']); | ||
|
||
grunt.registerTask('prep-release', ['dist', 'docs', 'jekyll:github', 'htmlmin', 'compress']); | ||
grunt.registerTask('prep-release', ['dist', 'docs', 'docs-github', 'compress']); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line is too long. |
||
|
||
// Task for updating the cached npm packages used by the Travis build (which are controlled by test-infra/npm-shrinkwrap.json). | ||
// This task should be run and the updated file should be committed whenever Bootstrap's dependencies change. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long.