wallabag/app/Resources/static/themes/baggy/js/autoClose.js

7 lines
136 B
JavaScript
Raw Normal View History

2015-01-28 12:58:12 +00:00
$(document).ready(function() {
current_url = window.location.href
if (current_url.match("&closewin=true")) {
window.close();
}
});