mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-12 00:45:47 +01:00
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
|
|
(function() {
|
||
|
|
// Alternate Logins
|
||
|
|
var altLoginEl = document.querySelector('.alt-logins');
|
||
|
|
altLoginEl.addEventListener('click', function(e) {
|
||
|
|
if (e.target.nodeName === 'LI') {
|
||
|
|
document.location.href = e.target.getAttribute('data-url');
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}());
|