open-orchestra/open-orchestra-user-bundle

View on GitHub
UserBundle/Resources/public/js/loginRedirection.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Add location hash in attribute action of login form
 * Used when an user is disconnect
 */
var form = document.getElementsByClassName('form-login');
if (form.length === 1) {
    form = form[0];
    form.setAttribute('action', form.getAttribute('action') + window.location.hash);
}