Convert json to bootstrap grid with color, width and content
window.onload = () => {
let a = {
rows: [
{
columns: [
{
text: 'col 1',
width: 6,
color: 'green'
},
{
text: 'col 2',
width: 6,
color: 'yellow'
}
]
}
]
}
document.getElementById('app').innerHTML = json2bootgrid(a);
}
Distributed under the MIT License.