have customizer output Bootstrap Theme too; fixes #12003

This commit is contained in:
Chris Rebert 2014-01-07 18:57:15 -08:00
parent 07309edce5
commit c635d8f547
1 changed files with 3 additions and 1 deletions

View File

@ -243,10 +243,12 @@ window.onload = function () { // wait for load in a dumb way because B-0
$(this).val() && (vars[$(this).prev().text()] = $(this).val())
})
var bsLessSource = generateLESS('bootstrap.less', lessFileIncludes, vars)
var bsLessSource = generateLESS('bootstrap.less', lessFileIncludes, vars)
var themeLessSource = generateLESS('theme.less', lessFileIncludes, vars)
try {
compileLESS(bsLessSource, 'bootstrap', result)
compileLESS(themeLessSource, 'bootstrap-theme', result)
} catch (err) {
return showError('<strong>Ruh roh!</strong> Could not parse less files.', err)
}