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
567dc12e
Commit
567dc12e
authored
11 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
Fixes
#12012
: Use correct banner in docs js
parent
e4b036d2
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Gruntfile.js
+13
-4
Gruntfile.js
docs-assets/js/customize.js
+3
-3
docs-assets/js/customize.js
with
16 additions
and
7 deletions
+16
-7
Gruntfile.js
+
13
-
4
View file @
567dc12e
...
...
@@ -96,15 +96,24 @@ module.exports = function (grunt) {
},
uglify
:
{
options
:
{
banner
:
'
<%= banner %>
\n
'
,
report
:
'
min
'
},
bootstrap
:
{
options
:
{
banner
:
'
<%= banner %>
\n
'
,
report
:
'
min
'
},
src
:
[
'
<%= concat.bootstrap.dest %>
'
],
dest
:
'
dist/js/<%= pkg.name %>.min.js
'
},
customize
:
{
options
:
{
banner
:
'
/*!
\n
'
+
'
* Bootstrap Docs (<%= pkg.homepage %>)
\n
'
+
'
* Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>
\n
'
+
'
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
\n
'
+
'
* details, see http://creativecommons.org/licenses/by/3.0/.
\n
'
+
'
*/
\n
'
,
report
:
'
min
'
},
src
:
[
'
docs-assets/js/less.js
'
,
'
docs-assets/js/jszip.js
'
,
...
...
This diff is collapsed.
Click to expand it.
docs-assets/js/customize.js
+
3
-
3
View file @
567dc12e
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