mirror of
https://github.com/lipis/flag-icons.git
synced 2024-11-22 11:27:29 +01:00
13 lines
493 B
JavaScript
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';
|
|
}
|
|
}
|
|
}
|