aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/_global/js/autoClose.js
blob: e9145b7e2e091b5443fc39b1d9a336a5180b8fdb (plain) (blame)
1
2
3
4
5
6
$(document).ready(function() {
	current_url = window.location.href
	if (current_url.match("&closewin=true")) {
		window.close();
	}
});