\
@@ -51,7 +52,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
history.replaceState(false, document.title, window.location.origin + window.location.pathname + '?id=' + result.id)
})
.error(function(err) {
- showError('Error Could not save gist file, configuration not saved.', err)
+ showError('Ruh roh! Could not save gist file, configuration not saved.', err)
})
}
@@ -108,7 +109,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
}
function generateZip(css, js, complete) {
- if (!css && !js) return showError('Error No Bootstrap files selected.', new Error('no Bootstrap'))
+ if (!css && !js) return showError('Ruh roh! No Bootstrap files selected.', new Error('no Bootstrap'))
var zip = new JSZip()
@@ -174,7 +175,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
, filename: 'bootstrap.css'
}).parse(css, function (err, tree) {
if (err) {
- return showError('Error Could not parse less files.', err)
+ return showError('Ruh roh! Could not parse less files.', err)
}
result = {
'bootstrap.css' : cw + tree.toCSS(),
@@ -182,7 +183,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
}
})
} catch (err) {
- return showError('Error Could not parse less files.', err)
+ return showError('Ruh roh! Could not parse less files.', err)
}
return result
diff --git a/customize.html b/customize.html
index 59b846894..8810b1ff8 100644
--- a/customize.html
+++ b/customize.html
@@ -15,25 +15,15 @@ base_url: "../"
Choose which LESS files to compile into your custom build of Bootstrap. Not sure which files to use? Read through the CSS and Components pages in the docs