diff options
| author | Chris Rebert <[email protected]> | 2013-11-23 12:17:32 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-11-23 12:17:32 -0800 |
| commit | cad664e863b50bceb5d8cc310de1ff301191422f (patch) | |
| tree | 6415c4f3eacb263f15896da70e0a7b171241b4a2 | |
| parent | ebc91077f745e3f5aec4b37257511d585b3daae1 (diff) | |
| parent | dbbd49b4f80b87dd4c7068d4974711adf78df6da (diff) | |
| download | bootstrap-cad664e863b50bceb5d8cc310de1ff301191422f.tar.xz bootstrap-cad664e863b50bceb5d8cc310de1ff301191422f.zip | |
Merge pull request #11598 from ZDroid/customizer-breaks
Fix #11594
| -rw-r--r-- | docs-assets/js/customizer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-assets/js/customizer.js b/docs-assets/js/customizer.js index 93555c809..addab3100 100644 --- a/docs-assets/js/customizer.js +++ b/docs-assets/js/customizer.js @@ -231,7 +231,7 @@ window.onload = function () { // wait for load in a dumb way because B-0 } result = { 'bootstrap.css' : cw + tree.toCSS(), - 'bootstrap.min.css' : cw + tree.toCSS({ compress: true }) + 'bootstrap.min.css' : cw + tree.toCSS({ compress: true }).replace(/\n/g, '') } }) } catch (err) { |
