diff options
| author | Chris Rebert <[email protected]> | 2013-12-18 15:37:46 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-12-18 16:25:23 -0800 |
| commit | 08854cf8a6fa4a139e3a3bf3cd0fdfc8cdff6d9f (patch) | |
| tree | 87e83093b2ddffbf1deaf69da9bee954ae35ba11 /docs-assets/js/customizer.js | |
| parent | fe7c7ccf29bfb47bf348190837be35f1857a11fe (diff) | |
| download | bootstrap-08854cf8a6fa4a139e3a3bf3cd0fdfc8cdff6d9f.tar.xz bootstrap-08854cf8a6fa4a139e3a3bf3cd0fdfc8cdff6d9f.zip | |
using templating doesn't seem to work there; hardcode license URL instead
Tested the customizer, the generated zip had:
css/bootstrap.css:line 6: * Licensed under MIT (<%= _.pluck(pkg.licenses, "url").join(", ") %>)
Revised customizer generates:
css/bootstrap.css:line 4: * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
Diffstat (limited to 'docs-assets/js/customizer.js')
| -rw-r--r-- | docs-assets/js/customizer.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs-assets/js/customizer.js b/docs-assets/js/customizer.js index 93c6c9f05..cd0f93319 100644 --- a/docs-assets/js/customizer.js +++ b/docs-assets/js/customizer.js @@ -8,7 +8,11 @@ /* jshint multistr:true */ window.onload = function () { // wait for load in a dumb way because B-0 - var cw = '/*!\n * Bootstrap v3.1.0 (http://getbootstrap.com)\n\n *\n * Copyright 2013 Twitter, Inc\n * Licensed under MIT (<%= _.pluck(pkg.licenses, "url").join(", ") %>)\n */\n\n' + var cw = '/*!\n' + + ' * Bootstrap v3.1.0 (http://getbootstrap.com)\n' + + ' * Copyright 2013 Twitter, Inc.\n' + + ' * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n' + + ' */\n\n'; function showError(msg, err) { $('<div id="bsCustomizerAlert" class="bs-customizer-alert">\ |
