mirror of
https://github.com/Michatec/MiniFaceBook.git
synced 2026-03-31 23:46:30 +02:00
9 lines
306 B
JavaScript
9 lines
306 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
document.querySelectorAll('.lang-select').forEach(function(el) {
|
|
el.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
document.cookie = "lang=" + this.dataset.lang + ";path=/";
|
|
location.reload();
|
|
});
|
|
});
|
|
}); |