wallabag/themes/baggy/js/autoClose.js
2014-02-12 21:58:40 +01:00

7 lines
136 B
JavaScript

$(document).ready(function() {
current_url = window.location.href
if (current_url.match("&closewin=true")) {
window.close();
}
});