0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-22 11:27:29 +01:00
flags/assets/docs.js
2013-09-27 00:40:54 +02:00

13 lines
493 B
JavaScript

window.onload = function () {
document.getElementById('btn-bootstrap').onclick = function() {
console.log('shit');
if (document.getElementById('bootstrap').rel == 'stylesheet') {
document.getElementById('bootstrap').rel = 'none';
document.getElementById('btn-bootstrap').innerHTML = 'Enable Bootstrap';
} else {
document.getElementById('bootstrap').rel = 'stylesheet';
document.getElementById('btn-bootstrap').innerHTML = 'Disalbe Bootstrap';
}
}
}