aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/admin/views/login/login.js
blob: a94955c32a674743638899f4b8b15192aeed34e6 (plain)
1
2
3
4
5
6
7
8
9
10
// Wait for the page HTML to be parsed
document.addEventListener ('DOMContentLoaded', function () {
	// Get login dialog
	var login = document.getElementById ('login');

	// Remove red border class
	setTimeout (function () {
		login.className = login.className.replace (/red ?/, '');
	}, 1000);
}, false);