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